aboutsummaryrefslogtreecommitdiffstats
path: root/docs/src/templates/index.html
diff options
context:
space:
mode:
authorMatias Niemelä2013-07-31 17:24:56 -0400
committerMisko Hevery2013-08-02 23:56:04 -0700
commit4ed5fc90b984bb704da8cb66dffab43cf78abefa (patch)
tree5e5e2d968fbe23199822fe67b3ca1b3e661d02b6 /docs/src/templates/index.html
parent246c1439b502b06823650505cbe4a3848b6fa5a3 (diff)
downloadangular.js-4ed5fc90b984bb704da8cb66dffab43cf78abefa.tar.bz2
chore(ngdocs): make sure the fold feature doesn't show up during page load
Diffstat (limited to 'docs/src/templates/index.html')
-rw-r--r--docs/src/templates/index.html7
1 files changed, 5 insertions, 2 deletions
diff --git a/docs/src/templates/index.html b/docs/src/templates/index.html
index 2cfd6c9d..8f86b468 100644
--- a/docs/src/templates/index.html
+++ b/docs/src/templates/index.html
@@ -4,6 +4,9 @@
<!--[if IE 8]> <html class="no-js lt-ie9 ng-app: docsApp;" lang="en" ng-controller="DocsController"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js ng-app: docsApp;" lang="en" ng-controller="DocsController"> <!--<![endif]-->
<head>
+ <style>
+ .ng-hide { display:none!important; }
+ </style>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="Description"
@@ -201,8 +204,8 @@
</div>
</header>
- <div id="docs-fold-overlay" ng-show="docs_fold" ng-click="fold(null)"></div>
- <div class="foldout" id="docs-fold" ng-show="docs_fold">
+ <div class="ng-hide" id="docs-fold-overlay" ng-show="docs_fold" ng-click="fold(null)"></div>
+ <div class="foldout ng-hide" id="docs-fold" ng-show="docs_fold">
<div id="docs-fold-close" ng-click="fold(null)">
<span class="icon-remove-sign"></span>
</div>