diff options
| author | Matias Niemelä | 2013-06-06 01:28:50 -0400 |
|---|---|---|
| committer | Misko Hevery | 2013-06-17 22:00:54 -0700 |
| commit | ef22968810d555f78d3bbf7b5428757690c8cc70 (patch) | |
| tree | 1a19f2649e07406bd1988c4d915deec87073c568 /docs/src/templates/index.html | |
| parent | 07ef1667db632d0fd75472f30343255edcebf43b (diff) | |
| download | angular.js-ef22968810d555f78d3bbf7b5428757690c8cc70.tar.bz2 | |
feat(ngdocs): support popover, foldouts and foldover annotations
Diffstat (limited to 'docs/src/templates/index.html')
| -rw-r--r-- | docs/src/templates/index.html | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/docs/src/templates/index.html b/docs/src/templates/index.html index 3b75207e..8e2fbc37 100644 --- a/docs/src/templates/index.html +++ b/docs/src/templates/index.html @@ -198,6 +198,15 @@ </div> </header> + <div id="docs-fold-overlay" ng-show="docs_fold" ng-click="fold(null)"></div> + <div id="docs-fold" ng-show="docs_fold" ng-animate="'fold'"> + <div id="docs-fold-close" ng-click="fold(null)"> + <span class="icon-remove-sign"></span> + </div> + <div ng-include="docs_fold"></div> + </div> + +<div ng-class="{fixed_body:docs_fold}"> <div role="main" class="container"> <div class="row clear-navbar"></div> @@ -359,6 +368,7 @@ </p> </div> </footer> +</div> </body> </html> |
