Private/protected visibility cleanup (#3263)

* Fix a number of private visibility issues
This commit is contained in:
Sam El-Husseini
2019-10-16 11:48:09 -05:00
committed by GitHub
parent 01b6992efd
commit 986e965be8
22 changed files with 38 additions and 19 deletions

View File

@@ -255,6 +255,7 @@ Blockly.Scrollbar.prototype.origin_ = new Blockly.utils.Coordinate(0, 0);
* For a horizontal scrollbar this is the x coordinate of the mouse down event;
* for a vertical scrollbar it's the y coordinate of the mouse down event.
* @type {Blockly.utils.Coordinate}
* @private
*/
Blockly.Scrollbar.prototype.startDragMouse_ = 0;
@@ -359,6 +360,7 @@ Blockly.Scrollbar.prototype.dispose = function() {
* Set the length of the scrollbar's handle and change the SVG attribute
* accordingly.
* @param {number} newLength The new scrollbar handle length in CSS pixels.
* @private
*/
Blockly.Scrollbar.prototype.setHandleLength_ = function(newLength) {
this.handleLength_ = newLength;