Skip to content

Commit

Permalink
update variable view
Browse files Browse the repository at this point in the history
  • Loading branch information
SeonMyungLim committed Aug 9, 2016
1 parent 2269f7a commit bccbc78
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 @@ -13562,7 +13562,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 bccbc78

Please sign in to comment.