From ba9f49d0a32e80597a0c9dc4841e81d6365333c5 Mon Sep 17 00:00:00 2001 From: Igor Minar Date: Mon, 19 Oct 2015 10:47:34 +0100 Subject: [PATCH] fix(api): use ng-cloak on the sitemap page to prevent FOUC --- public/docs/js/latest/api/index.jade | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/docs/js/latest/api/index.jade b/public/docs/js/latest/api/index.jade index 0845c89e2e..8fa214f422 100644 --- a/public/docs/js/latest/api/index.jade +++ b/public/docs/js/latest/api/index.jade @@ -9,7 +9,7 @@ dd.var(ng-class='{ active: apiType === "var" }' ng-click='setType("var")') Variable input.api-filter(placeholder='Filter', ng-model='apiFilter') 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 }} ul.api-list li.api-item(ng-repeat='item in apiList[section.name] | filter: { title: apiFilter, docType: apiType }')