From: Aleksander Ɓukasz <aleksander.lukasz@nowoczesnapolska.org.pl>
Date: Tue, 27 May 2014 10:09:05 +0000 (+0200)
Subject: smartxml: minor refactoring to improve clarity
X-Git-Url: https://git.mdrn.pl/fnpeditor.git/commitdiff_plain/84f2fdcdf9bd8e62fbecaa9a47e7418cc8a4f858?hp=fb3b7d9bff29aa5c99298ce9e4bae53c2eb47a7d

smartxml: minor refactoring to improve clarity
---

diff --git a/src/smartxml/smartxml.js b/src/smartxml/smartxml.js
index de70e9b..f9f78e8 100644
--- a/src/smartxml/smartxml.js
+++ b/src/smartxml/smartxml.js
@@ -176,16 +176,16 @@ ElementNode.prototype = Object.create(DocumentNode.prototype);
 $.extend(ElementNode.prototype, {
     nodeType: Node.ELEMENT_NODE,
 
-    setData: function(key, value) {
+    setData: function(arg1, arg2) {
         if(arguments.length === 2) {
-            if(_.isUndefined(value)) {
-                this._$.removeData(key);
+            if(_.isUndefined(arg2)) {
+                this._$.removeData(arg1);
             } else {
-                this._$.data(key, value);
+                this._$.data(arg1, arg2);
             }
         } else {
             this._$.removeData(_.keys(this._$.data()));
-            this._$.data(key);
+            this._$.data(arg1);
         }
     },