fix(dashboard): disable some tab indexes.

This commit is contained in:
Ed Rooth
2014-02-07 15:09:30 -08:00
parent ed3d63248a
commit 4c0c256a9d
2 changed files with 4 additions and 4 deletions

View File

@@ -24,9 +24,9 @@
<div id="view-container" ng-view></div>
<div id="footer">
<div id="powered-by" class="text-center">Powered by <a href="https://github.com/coreos/etcd">etcd</a></div>
<div id="powered-by" class="text-center">Powered by <a href="https://github.com/coreos/etcd" tabindex="-1">etcd</a></div>
<div id="coreos-logo">
<a href="http://coreos.com"><img src="images/logo.svg"/></a>
<a href="http://coreos.com" tabindex="-1"><img src="images/logo.svg"/></a>
</div>
</div>

View File

@@ -1,4 +1,4 @@
<a href="stats">stats only</a>
<a href="stats" tabindex="-1">stats only</a>
<div ng-include="prefixUrl('/views/stats.html')" class="home-container"></div>
<a href="browser">browser only</a>
<a href="browser" tabindex="-1">browser only</a>
<div ng-include="prefixUrl('/views/browser.html')" class="home-container"></div>