Use Infinity instead of a large number

This commit is contained in:
rachel-fenichel
2016-04-19 14:37:50 -07:00
parent 8882c727a3
commit ac15b8b179

View File

@@ -468,7 +468,7 @@ Blockly.Flyout.prototype.setBackgroundPathHorizontal_ =
* Scroll the flyout to the top.
*/
Blockly.Flyout.prototype.scrollToStart = function() {
this.scrollbar_.set((this.horizontalLayout_ && this.RTL) ? 100000 : 0);
this.scrollbar_.set((this.horizontalLayout_ && this.RTL) ? Infinity : 0);
};
/**