diff options
author | teramako | 2010-12-14 20:40:56 +0900 |
---|---|---|
committer | teramako | 2010-12-14 20:40:56 +0900 |
commit | 3f3c7584e9302871d467c3ef5744de459affcd24 (patch) | |
tree | 1478fd169711fa6534153d1b0d50a3e37de3920b | |
parent | 39aac13cad76b1cd56d19100f1aa076398f6cdbd (diff) | |
download | vimperator-plugins-3f3c7584e9302871d467c3ef5744de459affcd24.tar.bz2 |
fix space after function declaration
-rw-r--r-- | panorama.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/panorama.js b/panorama.js index 931cb8f..c2b4095 100644 --- a/panorama.js +++ b/panorama.js @@ -371,7 +371,7 @@ function switchToGroup (spec, wrap) { */ function removeTab (tab, count, focusLeftTab, quitOnLastTab) { const gb = gBrowser; - function remove(tab) { + function remove (tab) { if (gb.tabs.length > 1) { gb.removeTab(tab); } else if (buffer.URL != "about:blank" || gb.webNavigation.sessionHistory.count > 0) { |