+ },
+ getWlxmlTag: function() {
+ return this.$element.attr('wlxml-tag');
+ },
+ setWlxmlTag: function(tag) {
+ this.$element.attr('wlxml-tag', tag);
+ },
+ getWlxmlClass: function() {
+ return this.$element.attr('wlxml-class').replace('-', '.');
+ },
+ setWlxmlClass: function(klass) {
+ this.$element.attr('wlxml-class', klass);
+ },
+ is: function(what) {
+ if(what === 'list' && _.contains(['list-items', 'list-items-enum'], this.$element.attr('wlxml-class')))
+ return true;
+ return false;