File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -350,8 +350,8 @@ <h2 id="Shortcuts">Shortcuts</h2>
350
350
< div class = 'shortcuts' >
351
351
{ { each keywords} }
352
352
< a href = "#${encodeURIComponent($value.name)}"
353
- class = "{{if $value.matched === false}}no-{{/if}}match"
354
- title = "${$value.shortdoc}" > ${ $value . name } </ a >
353
+ class = "{{if $value.matched === false}}no-{{/if}}match"
354
+ title = "${$value.shortdoc}" > ${ $value . name } </ a >
355
355
{ { if $index < keywords . length - 1 } }
356
356
< span class = "shortcut-list-separator" > ·</ span >
357
357
{ { / i f } }
Original file line number Diff line number Diff line change @@ -56,9 +56,9 @@ function expandElement(item, retryCount) {
56
56
// .css is faster than .show and .show w/ callback is terribly slow
57
57
children . css ( { 'display' : 'block' } ) ;
58
58
// in rare cases on large logs concurrent expanding fails => retry
59
- if ( children . css ( 'display' ) != 'block' && retryCount > 0 ) {
59
+ if ( children . css ( 'display' ) != 'block' && retryCount > 0 ) {
60
60
console . debug ( 'expandElement ' + item . id + ' failed! planning retry...' ) ;
61
- setTimeout ( function ( ) { expandElement ( item , retryCount - 1 ) ; } , 0 ) ;
61
+ setTimeout ( function ( ) { expandElement ( item , retryCount - 1 ) ; } , 0 ) ;
62
62
return ;
63
63
}
64
64
populateChildren ( item . id , children , item . childrenNames ) ;
You can’t perform that action at this time.
0 commit comments