From 7a2014c27a040390c1c8e165f8cbd11f30b330fd Mon Sep 17 00:00:00 2001 From: =?utf8?q?Aleksander=20=C5=81ukasz?= Date: Thu, 3 Oct 2013 16:27:35 +0200 Subject: [PATCH] getMetaAttributes --- src/wlxml/wlxml.js | 2 +- src/wlxml/wlxml.test.js | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/src/wlxml/wlxml.js b/src/wlxml/wlxml.js index bdf7527..1995a8b 100644 --- a/src/wlxml/wlxml.js +++ b/src/wlxml/wlxml.js @@ -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; }, diff --git a/src/wlxml/wlxml.test.js b/src/wlxml/wlxml.test.js index dd0bc11..7d5e6d0 100644 --- a/src/wlxml/wlxml.test.js +++ b/src/wlxml/wlxml.test.js @@ -19,7 +19,13 @@ describe('WLXMLDocument', function() { var node = nodeFromXML('
'); expect(node.getClass()).to.equal('class.subclass'); }); + + it('returns its attributes as dict', function() { + var node = nodeFromXML(''); + expect(node.getMetaAttributes()).to.eql({attr1: 'val1', attr2: 'val2'}); + }); }); + }); }); \ No newline at end of file -- 2.20.1