mirror of
https://github.com/Hopiu/angular.js.git
synced 2026-04-07 08:30:59 +00:00
tabbing and keyboard shortcut for docs
- 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
This commit is contained in:
parent
4f5d5029c2
commit
ab040254f0
1 changed files with 4 additions and 3 deletions
|
|
@ -26,14 +26,15 @@
|
|||
<div id="header">
|
||||
<h1>
|
||||
<span class="main-title">{{getTitle()}}</span>
|
||||
<a href="#"><span class="angular"><angular/></span> Docs</a>
|
||||
<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"/>
|
||||
<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="">{{page.name | short}}</a>
|
||||
<a href="{{getUrl(page)}}" ng:click="" tabindex="2">{{page.name | short}}</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Reference in a new issue