blob: 2f5a823427a126ab8bd736d8e4327695dea570b6 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
 | <!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="wiki_widgets.js"></script>
  <link rel="stylesheet" href="wiki_widgets.css" type="text/css" media="screen" />
  <script type="text/javascript">
  	function DocsController() {
  	  this.docs = NG_DOC;
  	  window.$root = this.$root;
  	  
  	  this.getUrl = function(page){
  	    return '#' + encodeURIComponent(page.name);
  	  }
  	}
  </script>
</head>
<body ng:controller="DocsController">
  <table>
    <tr>
      <td valign="top">
        <div ng:repeat="(name, type) in docs.section">
          <b>{{name}}</b>
          <div ng:repeat="page in type">
            <a href="{{getUrl(page)}}"><tt>{{page.shortName}}</tt></a>
          </div>
         </div>
      </td>
      <td valign="top"><ng:include src=" './' + $location.hashPath + '.html' "></ng:include></td>
    </tr>
  </table>
</body>
</html>
 |