mirror of
https://github.com/Hopiu/angular.js.git
synced 2026-03-24 10:20:23 +00:00
- first tab goes to the search box, following tabs iterate results - ctrl+s (FF on mac) or ctrl+alt+s (Chrome on mac) move focus to the search box
46 lines
1.7 KiB
HTML
46 lines
1.7 KiB
HTML
<!doctype html>
|
|
<html xmlns:ng="http://angularjs.org/"
|
|
xmlns:doc="http://docs.angularjs.org/"
|
|
ng:controller="DocsController">
|
|
<head>
|
|
<title ng:bind-template="<angular/>: {{getTitle()}}"><angular/></title>
|
|
|
|
<meta name="fragment" content="!">
|
|
|
|
<link rel="stylesheet" href="doc_widgets.css" type="text/css" />
|
|
<link rel="stylesheet" href="docs.css" type="text/css"/>
|
|
<link rel="stylesheet" href="syntaxhighlighter/shCore.css" type="text/css"/>
|
|
<link rel="stylesheet" href="syntaxhighlighter/shThemeDefault.css" type="text/css"/>
|
|
|
|
<script src="jquery.min.js"></script>
|
|
<script src="syntaxhighlighter/shCore.js"></script>
|
|
<script src="syntaxhighlighter/shBrushJScript.js"></script>
|
|
<script src="syntaxhighlighter/shBrushXml.js"></script>
|
|
|
|
<script src="../angular.min.js" ng:autobind></script>
|
|
<script src="docs.js"></script>
|
|
<script src="doc_widgets.js"></script>
|
|
<script src="docs-keywords.js"></script>
|
|
</head>
|
|
<body style="display:none;" ng:show="true">
|
|
<div id="header">
|
|
<h1>
|
|
<span class="main-title">{{getTitle()}}</span>
|
|
<a href="#" tabindex="0"><span class="angular"><angular/></span> Docs</a>
|
|
</h1>
|
|
</div>
|
|
<div id="sidebar">
|
|
<input type="text" name="search" id="search-box" placeholder="search the docs"
|
|
tabindex="1" accesskey="s"/>
|
|
<ul id="api-list">
|
|
<li ng:repeat="page in pages.$filter(search)" ng:class="getClass(page)">
|
|
<a href="{{getUrl(page)}}" ng:click="" tabindex="2">{{page.name | short}}</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
<div id="main">
|
|
<a id="feedback" ng:href="{{getFeedbackUrl()}}">Report an Issue or Ask a Question</a>
|
|
<ng:include src="getCurrentPartial()" onload="afterPartialLoaded()"></ng:include>
|
|
</div>
|
|
</body>
|
|
</html>
|