Remove needless "this"

This commit is contained in:
YUKI Hiroshi 2016-02-22 14:36:01 +09:00
parent f28946b5f8
commit 2778357864

View File

@ -773,7 +773,7 @@ AutoHideBrowser.prototype = inherit(AutoHideBase.prototype, {
this.delayedShowForFeedbackTimer = null;
}
this.cancelHideForFeedback();
this.delayedShowForFeedbackTimer = w.setTimeout((function(this) {
this.delayedShowForFeedbackTimer = w.setTimeout((function() {
this.delayedShowForFeedbackTimer = null;
this.delayedShowForFeedback(aTab);
}).bind(this), 100);