linting
authorAleksander Łukasz <aleksander.lukasz@nowoczesnapolska.org.pl>
Mon, 7 Oct 2013 12:12:11 +0000 (14:12 +0200)
committerAleksander Łukasz <aleksander.lukasz@nowoczesnapolska.org.pl>
Wed, 9 Oct 2013 14:56:56 +0000 (16:56 +0200)
src/wlxml/wlxml.js

index 1995a8b..10a79ed 100644 (file)
@@ -24,16 +24,18 @@ $.extend(WLXMLElementNode.prototype, smartxml.ElementNode.prototype, {
     getMetaAttributes: function() {
         var toret = {};
         this.getAttrs().forEach(function(attr) {
     getMetaAttributes: function() {
         var toret = {};
         this.getAttrs().forEach(function(attr) {
-            if(isMetaAttribute(attr.name))
+            if(isMetaAttribute(attr.name)) {
                 toret[attr.name.substr(5)] = attr.value;
                 toret[attr.name.substr(5)] = attr.value;
+            }
         });
         return toret;
     },
     getOtherAttributes: function() {
         var toret = {};
         this.getAttrs().forEach(function(attr) {
         });
         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;
                 toret[attr.name] = attr.value;
+            }
         });
         return toret;
     }
         });
         return toret;
     }