Skip to content

Commit

Permalink
Fix coding standard errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
dverkade committed Oct 16, 2018
1 parent bf024c1 commit df90f67
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ define([
initObservable: function () {
this._super();

this.value.equalityComparer = function(a, b) {
return (!a && !b) || (a == b);
this.value.equalityComparer = function (oldValue, newValue) {
return !oldValue && !newValue || oldValue === newValue;
};

return this;
Expand Down

0 comments on commit df90f67

Please sign in to comment.