getMetaAttributes
authorAleksander Łukasz <aleksander.lukasz@nowoczesnapolska.org.pl>
Thu, 3 Oct 2013 14:27:35 +0000 (16:27 +0200)
committerAleksander Łukasz <aleksander.lukasz@nowoczesnapolska.org.pl>
Wed, 9 Oct 2013 14:56:56 +0000 (16:56 +0200)
src/wlxml/wlxml.js
src/wlxml/wlxml.test.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;
     },
index dd0bc11..7d5e6d0 100644 (file)
@@ -19,7 +19,13 @@ describe('WLXMLDocument', function() {
             var node = nodeFromXML('<header class="class.subclass"></header>');
             expect(node.getClass()).to.equal('class.subclass');
         });
+
+        it('returns its attributes as dict', function() {
+            var node = nodeFromXML('<span meta-attr1="val1" meta-attr2="val2"></span>');
+            expect(node.getMetaAttributes()).to.eql({attr1: 'val1', attr2: 'val2'});
+        });
     });
+
 });
 
 });
\ No newline at end of file