@@ -132,7 +132,7 @@ function scrollToActive() {
132132 // Inspired on source of revealjs.com
133133 let storedScrollTop = parseInt (
134134 sessionStorage . getItem ( "sidebar-scroll-top" ) ,
135- 10 ,
135+ 10
136136 ) ;
137137
138138 if ( ! isNaN ( storedScrollTop ) ) {
@@ -184,7 +184,7 @@ var findSearchInput = () => {
184184 } else {
185185 // must be at least one persistent form, use the first persistent one
186186 form = document . querySelector (
187- "div:not(.search-button__search-container) > form.bd-search" ,
187+ "div:not(.search-button__search-container) > form.bd-search"
188188 ) ;
189189 }
190190 return form . querySelector ( "input" ) ;
@@ -235,7 +235,7 @@ var addEventListenerForSearchKeyboard = () => {
235235 toggleSearchField ( ) ;
236236 }
237237 } ,
238- true ,
238+ true
239239 ) ;
240240} ;
241241
@@ -247,7 +247,7 @@ var changeSearchShortcutKey = () => {
247247 var isMac = window . navigator . platform . toUpperCase ( ) . indexOf ( "MAC" ) >= 0 ;
248248 if ( isMac ) {
249249 forms . forEach (
250- ( f ) => ( f . querySelector ( "kbd.kbd-shortcut__modifier" ) . innerText = "⌘" ) ,
250+ ( f ) => ( f . querySelector ( "kbd.kbd-shortcut__modifier" ) . innerText = "⌘" )
251251 ) ;
252252 }
253253} ;
@@ -331,7 +331,7 @@ if (themeSwitchBtns) {
331331 const node = document . createElement ( "a" ) ;
332332 node . setAttribute (
333333 "class" ,
334- "list-group-item list-group-item-action py-1" ,
334+ "list-group-item list-group-item-action py-1"
335335 ) ;
336336 node . setAttribute ( "href" , `${ entry . url } ${ currentFilePath } ` ) ;
337337 node . appendChild ( span ) ;
0 commit comments