getMetaAttributes
[fnpeditor.git] / src / wlxml / wlxml.js
index bdf7527..1995a8b 100644 (file)
@@ -25,7 +25,7 @@ $.extend(WLXMLElementNode.prototype, smartxml.ElementNode.prototype, {
         var toret = {};
         this.getAttrs().forEach(function(attr) {
             if(isMetaAttribute(attr.name))
-                meta[attr.name.substr(5)] = attr.value;
+                toret[attr.name.substr(5)] = attr.value;
         });
         return toret;
     },