fix(api): use ng-cloak on the sitemap page

to prevent FOUC
This commit is contained in:
Igor Minar 2015-10-19 10:47:34 +01:00
parent 93d8ab82b1
commit ba9f49d0a3
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@
dd.var(ng-class='{ active: apiType === "var" }' ng-click='setType("var")') Variable dd.var(ng-class='{ active: apiType === "var" }' ng-click='setType("var")') Variable
input.api-filter(placeholder='Filter', ng-model='apiFilter') input.api-filter(placeholder='Filter', ng-model='apiFilter')
article(class="l-content-small grid-fluid docs-content") article(class="l-content-small grid-fluid docs-content")
div(ng-repeat='section in apiSections') div(ng-repeat='section in apiSections' ng-cloak)
h3 {{ section.title }} h3 {{ section.title }}
ul.api-list ul.api-list
li.api-item(ng-repeat='item in apiList[section.name] | filter: { title: apiFilter, docType: apiType }') li.api-item(ng-repeat='item in apiList[section.name] | filter: { title: apiFilter, docType: apiType }')