aboutsummaryrefslogtreecommitdiffstats
path: root/docs/index.html
diff options
context:
space:
mode:
authorMisko Hevery2010-10-27 15:31:10 -0700
committerIgor Minar2010-11-03 09:47:22 -0700
commit659af29adbd041fbbbaf041ead53266210a61f4e (patch)
tree32a9ecff4482ae883321e2975fe74057795b21d1 /docs/index.html
parent1fe7e3a1302e948a31ab80d02ede6975c3bddd58 (diff)
downloadangular.js-659af29adbd041fbbbaf041ead53266210a61f4e.tar.bz2
jsdoc parser + generator + viewer + scenario runner
- parse jsdocs from source code - generate prerendered (markdown + mustache) partials - generate json - generate scenario runner for examples in docs - basic angular doc viewer
Diffstat (limited to 'docs/index.html')
-rw-r--r--docs/index.html25
1 files changed, 25 insertions, 0 deletions
diff --git a/docs/index.html b/docs/index.html
new file mode 100644
index 00000000..f61893a4
--- /dev/null
+++ b/docs/index.html
@@ -0,0 +1,25 @@
+<!DOCTYPE HTML>
+<html xmlns:ng="http://angularjs.org" wiki:ng="http://angularjs.org">
+<head>
+ <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.3/jquery.min.js"></script>
+ <script type="text/javascript" src="docs-data.js"></script>
+ <script type="text/javascript" src="../angular.min.js" ng:autobind></script>
+ <script type="text/javascript" src="http://angularjs.org/extensions/wiki_widgets.js"></script>
+ <link rel="stylesheet" href="http://angularjs.org/extensions/wiki_widgets.css" type="text/css" media="screen" />
+</head>
+<body ng:init="docs=$window.NG_DOC; $window.$root = $root">
+ <table>
+ <tr>
+ <td valign="top">
+ <div ng:repeat="(name, type) in docs.section">
+ <b>{{name}}</b>
+ <div ng:repeat="page in type">
+ <a href="#{{page.name}}"><tt>{{page.shortName}}</tt></a>
+ </div>
+ </div>
+ </td>
+ <td valign="top"><ng:include src="$location.hashPath + '.html' "></ng:include></td>
+ </tr>
+ </table>
+</body>
+</html> \ No newline at end of file