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:
Igor Minar 2011-01-10 21:23:22 -08:00
parent 4f5d5029c2
commit ab040254f0

View file

@ -26,14 +26,15 @@
<div id="header">
<h1>
<span class="main-title">{{getTitle()}}</span>
<a href="#"><span class="angular">&lt;angular/&gt;</span> Docs</a>
<a href="#" tabindex="0"><span class="angular">&lt;angular/&gt;</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>