@@ -91,12 +91,12 @@ function onToolbarButtonClick(tab) {
9191 if ( mInitializationPhase < PHASE_BACKGROUND_INITIALIZED ||
9292 Permissions . requestPostProcess ( ) ) {
9393 return ;
94- }
95-
96- if ( Migration . isInitialStartup ( ) ) {
97- Migration . openInitialStartupPage ( ) ;
98- return ;
99- }
94+ }
95+
96+ if ( Migration . isInitialStartup ( ) ) {
97+ Migration . openInitialStartupPage ( ) ;
98+ return ;
99+ }
100100
101101 if ( typeof browser . sidebarAction . toggle == 'function' )
102102 browser . sidebarAction . toggle ( ) ;
@@ -259,16 +259,16 @@ async function onShortcutCommand(command) {
259259 case 'focusPreviousSibling' :
260260 TabsInternalOperation . activateTab (
261261 activeTab . $TST . previousSiblingTab ||
262- ( activeTab . $TST . parent ?
263- activeTab . $TST . parent . $TST . lastChild :
262+ ( activeTab . $TST . parent ?
263+ activeTab . $TST . parent . $TST . lastChild :
264264 Tab . getLastRootTab ( activeTab . windowId ) )
265265 ) ;
266266 return ;
267- case 'focusNextSibling' :
267+ case 'focusNextSibling' :
268268 TabsInternalOperation . activateTab (
269269 activeTab . $TST . nextSiblingTab ||
270- ( activeTab . $TST . parent ?
271- activeTab . $TST . parent . $TST . firstChild :
270+ ( activeTab . $TST . parent ?
271+ activeTab . $TST . parent . $TST . firstChild :
272272 Tab . getFirstVisibleTab ( activeTab . windowId ) )
273273 ) ;
274274 return ;
0 commit comments