From 54b2c981b1934bf79992cfcb92ee8293949106e8 Mon Sep 17 00:00:00 2001 From: Piro / YUKI Hiroshi Date: Fri, 27 Feb 2015 00:59:53 +0900 Subject: [PATCH] Fix too deep indent --- modules/window.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/window.js b/modules/window.js index 3b65b925..6eda2179 100644 --- a/modules/window.js +++ b/modules/window.js @@ -793,9 +793,9 @@ TreeStyleTabWindow.prototype = inherit(TreeStyleTabBase, { // when you just release accel key... /* PUBLIC API */ - this.fireCustomEvent(this.kEVENT_TYPE_TAB_FOCUS_SWITCHING_END, b, true, false, data); - // for backward compatibility - this.fireCustomEvent(this.kEVENT_TYPE_TAB_FOCUS_SWITCHING_END.replace(/^nsDOM/, ''), b, true, false, data); + this.fireCustomEvent(this.kEVENT_TYPE_TAB_FOCUS_SWITCHING_END, b, true, false, data); + // for backward compatibility + this.fireCustomEvent(this.kEVENT_TYPE_TAB_FOCUS_SWITCHING_END.replace(/^nsDOM/, ''), b, true, false, data); if (this._tabShouldBeExpandedAfterKeyReleased) { let tab = this._tabShouldBeExpandedAfterKeyReleased;