@@ -132,7 +132,7 @@ function scrollToActive() {
132
132
// Inspired on source of revealjs.com
133
133
let storedScrollTop = parseInt (
134
134
sessionStorage . getItem ( "sidebar-scroll-top" ) ,
135
- 10 ,
135
+ 10
136
136
) ;
137
137
138
138
if ( ! isNaN ( storedScrollTop ) ) {
@@ -184,7 +184,7 @@ var findSearchInput = () => {
184
184
} else {
185
185
// must be at least one persistent form, use the first persistent one
186
186
form = document . querySelector (
187
- "div:not(.search-button__search-container) > form.bd-search" ,
187
+ "div:not(.search-button__search-container) > form.bd-search"
188
188
) ;
189
189
}
190
190
return form . querySelector ( "input" ) ;
@@ -235,7 +235,7 @@ var addEventListenerForSearchKeyboard = () => {
235
235
toggleSearchField ( ) ;
236
236
}
237
237
} ,
238
- true ,
238
+ true
239
239
) ;
240
240
} ;
241
241
@@ -247,7 +247,7 @@ var changeSearchShortcutKey = () => {
247
247
var isMac = window . navigator . platform . toUpperCase ( ) . indexOf ( "MAC" ) >= 0 ;
248
248
if ( isMac ) {
249
249
forms . forEach (
250
- ( f ) => ( f . querySelector ( "kbd.kbd-shortcut__modifier" ) . innerText = "⌘" ) ,
250
+ ( f ) => ( f . querySelector ( "kbd.kbd-shortcut__modifier" ) . innerText = "⌘" )
251
251
) ;
252
252
}
253
253
} ;
@@ -331,7 +331,7 @@ if (themeSwitchBtns) {
331
331
const node = document . createElement ( "a" ) ;
332
332
node . setAttribute (
333
333
"class" ,
334
- "list-group-item list-group-item-action py-1" ,
334
+ "list-group-item list-group-item-action py-1"
335
335
) ;
336
336
node . setAttribute ( "href" , `${ entry . url } ${ currentFilePath } ` ) ;
337
337
node . appendChild ( span ) ;
0 commit comments