Fix some lint errors

This commit is contained in:
Rachel Fenichel
2017-02-03 14:01:18 -08:00
parent 1a1646a5c4
commit 4152542c2f
14 changed files with 27 additions and 28 deletions

View File

@@ -364,9 +364,9 @@ Blockly.Scrollbar.prototype.setScrollViewSize_ = function(newSize) {
};
/**
+ * Set whether this scrollbar's container is visible.
+ * @param {boolean} visible Whether the container is visible.
+ */
* Set whether this scrollbar's container is visible.
* @param {boolean} visible Whether the container is visible.
*/
Blockly.ScrollbarPair.prototype.setContainerVisible = function(visible) {
this.hScroll.setContainerVisible(visible);
this.vScroll.setContainerVisible(visible);
@@ -646,7 +646,7 @@ Blockly.Scrollbar.prototype.setVisible = function(visible) {
* We cannot rely on the containing workspace being hidden to hide us
* because it is not necessarily our parent in the dom.
*/
Blockly.Scrollbar.prototype.updateDisplay_ = function() {
Blockly.Scrollbar.prototype.updateDisplay_ = function() {
var show = true;
// Check whether our parent/container is visible.
if (!this.containerVisible_) {