X-Git-Url: https://git.mdrn.pl/fnpeditor.git/blobdiff_plain/81f3c62162311a0c697007389567e79aae9e597f..a4e2af35996896240356ad8ca4c7b6003d4b9ff3:/src/wlxml/wlxml.js?ds=inline diff --git a/src/wlxml/wlxml.js b/src/wlxml/wlxml.js index bdf7527..10a79ed 100644 --- a/src/wlxml/wlxml.js +++ b/src/wlxml/wlxml.js @@ -24,16 +24,18 @@ $.extend(WLXMLElementNode.prototype, smartxml.ElementNode.prototype, { getMetaAttributes: function() { var toret = {}; this.getAttrs().forEach(function(attr) { - if(isMetaAttribute(attr.name)) - meta[attr.name.substr(5)] = attr.value; + if(isMetaAttribute(attr.name)) { + toret[attr.name.substr(5)] = attr.value; + } }); return toret; }, getOtherAttributes: function() { var toret = {}; this.getAttrs().forEach(function(attr) { - if(attr.name != 'class' && !isMetaAttribute(attr.name)) + if(attr.name !== 'class' && !isMetaAttribute(attr.name)) { toret[attr.name] = attr.value; + } }); return toret; }