@@ -59,7 +59,7 @@ <h1>Opening library documentation failed</h1>
5959 selectedTag = params [ "tag" ] ;
6060 tagSearch ( selectedTag , window . location . hash ) ;
6161 }
62- if ( libdoc . all_tags . length ) {
62+ if ( libdoc . tags . length ) {
6363 libdoc . selectedTag = selectedTag ;
6464 renderTemplate ( 'tags-shortcuts' , libdoc ) ;
6565 }
@@ -138,7 +138,7 @@ <h1>Opening library documentation failed</h1>
138138 } ) ;
139139 renderTemplate ( 'keyword-shortcuts' , result ) ;
140140 renderTemplate ( 'keywords' , result ) ;
141- if ( libdoc . all_tags . length ) {
141+ if ( libdoc . tags . length ) {
142142 libdoc . selectedTag = include . tagsExact ? pattern : "" ;
143143 renderTemplate ( 'tags-shortcuts' , libdoc ) ;
144144 }
@@ -224,7 +224,7 @@ <h1>Opening library documentation failed</h1>
224224 function resetKeywords ( ) {
225225 renderTemplate ( 'keyword-shortcuts' , libdoc ) ;
226226 renderTemplate ( 'keywords' , libdoc ) ;
227- if ( libdoc . all_tags . length ) {
227+ if ( libdoc . tags . length ) {
228228 renderTemplate ( 'tags' , libdoc ) ;
229229 }
230230 document . getElementById ( "keyword-statistics-header" ) . innerText = '' + libdoc . keywords . length ;
@@ -343,7 +343,7 @@ <h4>Documentation</h4>
343343 < input placeholder = "Search" type = "text" class = "search-input" onkeyup = "delay(searching, 500)" />
344344 < button class = "clear-search" onclick = "clearSearch()" > ✕</ button >
345345 </ div >
346- { { if all_tags . length} }
346+ { { if tags . length} }
347347 < select id = "tags-shortcuts-container" onchange = "location = this.value;" >
348348 </ select >
349349 { { / i f } }
@@ -382,7 +382,7 @@ <h4>Keywords (<span id="keyword-statistics-header"></span>)</h4>
382382
383383< script type ="text/x-jquery-tmpl " id ="tags-shortcuts-template ">
384384 < option value = "javascript:clearTagSearch()" { { if selectedTag === ""}}selected{{/if}}>- Show all tags -</option>
385- { { each all_tags } }
385+ { { each tags } }
386386 < option value = "javascript:tagSearch('${$value}')" { { if selectedTag === $value} } selected { { / i f } } > $ { $ v a l u e } < / a>
387387 < / option >
388388 { { / e a c h } }
@@ -437,7 +437,7 @@ <h4>Arguments</h4>
437437 < / div >
438438 </ div >
439439 { { / i f } }
440- { { if libdoc . all_tags . length} }
440+ { { if libdoc . tags . length} }
441441 < div class = "tags" >
442442 < h4 > Tags</ h4 >
443443 { { each tags } }
0 commit comments