mirror of
https://github.com/google/blockly.git
synced 2026-01-07 09:00:11 +01:00
chore: Fix or individually disable no-this-alias lint rule violations. (#6371)
This commit is contained in:
@@ -164,12 +164,10 @@ export class Scrollbar {
|
||||
this.lengthAttribute_ = 'height';
|
||||
this.positionAttribute_ = 'y';
|
||||
}
|
||||
const scrollbar = this;
|
||||
this.onMouseDownBarWrapper_ = browserEvents.conditionalBind(
|
||||
this.svgBackground_!, 'mousedown', scrollbar,
|
||||
scrollbar.onMouseDownBar_);
|
||||
this.svgBackground_!, 'mousedown', this, this.onMouseDownBar_);
|
||||
this.onMouseDownHandleWrapper_ = browserEvents.conditionalBind(
|
||||
this.svgHandle_!, 'mousedown', scrollbar, scrollbar.onMouseDownHandle_);
|
||||
this.svgHandle_!, 'mousedown', this, this.onMouseDownHandle_);
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user