luci2: support object comparisations in L.cbi.AbstractValue.changed()
authorJo-Philipp Wich <jow@openwrt.org>
Sun, 13 Apr 2014 20:46:05 +0000 (22:46 +0200)
committerJo-Philipp Wich <jow@openwrt.org>
Sun, 13 Apr 2014 20:46:05 +0000 (22:46 +0200)
luci2/htdocs/luci2/luci2.js

index e47f5bd..d275d1b 100644 (file)
@@ -5099,7 +5099,7 @@ function LuCI2()
                        if (typeof(a) != typeof(b))
                                return true;
 
                        if (typeof(a) != typeof(b))
                                return true;
 
-                       if (typeof(a) == 'object')
+                       if ($.isArray(a))
                        {
                                if (a.length != b.length)
                                        return true;
                        {
                                if (a.length != b.length)
                                        return true;
@@ -5110,6 +5110,18 @@ function LuCI2()
 
                                return false;
                        }
 
                                return false;
                        }
+                       else if ($.isPlainObject(a))
+                       {
+                               for (var k in a)
+                                       if (!(k in b))
+                                               return true;
+
+                               for (var k in b)
+                                       if (!(k in a) || a[k] !== b[k])
+                                               return true;
+
+                               return false;
+                       }
 
                        return (a != b);
                },
 
                        return (a != b);
                },