You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$$equals: function(paramValues1, paramValues2) {
var equal = true; self = this;
forEach(self.$$keys(), function(key) {
var left = paramValues1 && paramValues1[key], right = paramValues2 && paramValues2[key];
if (!self[key].type.equals(left, right)) equal = false;
});
return equal;
},
It should var equal = true, self = this; not var equal = true; self = this;
This is a problem for internet explorer.
I get this error if I change the state on IE9: JavaScript error: Object doesn't support property or method '$$keys'
The text was updated successfully, but these errors were encountered:
There is a little issue on:
It should
var equal = true, self = this;
notvar equal = true; self = this;
This is a problem for internet explorer.
I get this error if I change the state on IE9: JavaScript error: Object doesn't support property or method '$$keys'
The text was updated successfully, but these errors were encountered: