Enable eslint rule spaced-comment

Fix up all remaining violations and turn the rule on.
This commit is contained in:
Rachel Fenichel
2019-09-25 16:04:05 -07:00
parent e69db137a7
commit 269f0dc381
14 changed files with 26 additions and 43 deletions

View File

@@ -128,13 +128,13 @@ Blockly.TouchGesture.prototype.doStart = function(e) {
Blockly.TouchGesture.prototype.bindMouseEvents = function(e) {
this.onStartWrapper_ = Blockly.bindEventWithChecks_(
document, 'mousedown', null, this.handleStart.bind(this),
/*opt_noCaptureIdentifier*/ true);
/* opt_noCaptureIdentifier */ true);
this.onMoveWrapper_ = Blockly.bindEventWithChecks_(
document, 'mousemove', null, this.handleMove.bind(this),
/*opt_noCaptureIdentifier*/ true);
/* opt_noCaptureIdentifier */ true);
this.onUpWrapper_ = Blockly.bindEventWithChecks_(
document, 'mouseup', null, this.handleUp.bind(this),
/*opt_noCaptureIdentifier*/ true);
/* opt_noCaptureIdentifier */ true);
e.preventDefault();
e.stopPropagation();