Skip to content

Commit

Permalink
Merge pull request #434 from entrylabs/issue/4150
Browse files Browse the repository at this point in the history
update variable view
  • Loading branch information
chanlee authored Aug 10, 2016
2 parents 468bb40 + bccbc78 commit 653a3b6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dist/entry.js
Original file line number Diff line number Diff line change
Expand Up @@ -13567,7 +13567,7 @@ Entry.Variable.prototype.getMinValue = function() {
};
Entry.Variable.prototype.setMinValue = function(b) {
this.minValue_ = b = b || 0;
this.value_ < b && (this.value_ = b);
this.value_ < b && this.setValue(b);
this.updateView();
this.isMinFloat = Entry.isFloat(this.minValue_);
};
Expand Down
2 changes: 1 addition & 1 deletion dist/entry.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/variable.js
Original file line number Diff line number Diff line change
Expand Up @@ -819,7 +819,7 @@ Entry.Variable.prototype.setMinValue = function(minValue) {
minValue = minValue || 0;
this.minValue_ = minValue;
if (this.value_ < minValue)
this.value_ = minValue;
this.setValue(minValue);
this.updateView();
this.isMinFloat = Entry.isFloat(this.minValue_);
};
Expand Down

0 comments on commit 653a3b6

Please sign in to comment.