summaryrefslogtreecommitdiff
path: root/res
diff options
context:
space:
mode:
authorAlon Levy <alon@pobox.com>2015-03-10 13:01:39 +0200
committerAlon Levy <alon@pobox.com>2015-03-10 13:02:31 +0200
commit3ebb8554564760482eeabb079813db589e734a51 (patch)
treef8358616b1465f08bc1274b7865527cf1a019e3c /res
parent0984948d890040d7f97709378c64d3c1c908c4cd (diff)
client: graph_view: make nodes tabindex'able sorted top to bottom left to right
Diffstat (limited to 'res')
-rw-r--r--res/templates/index.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/res/templates/index.html b/res/templates/index.html
index 6fb3aed0..0654dd67 100644
--- a/res/templates/index.html
+++ b/res/templates/index.html
@@ -68,12 +68,12 @@ var rz_config = { // set as a global variable
</div>
<div id="input-box-set-container">
<div class="input-container" id="input-container__search">
- <input class="input-bar" id="search" placeholder="Search for nodes or links"/>
+ <input class="input-bar" tabindex="1" id="search" placeholder="Search for nodes or links"/>
<button tabindex="-1" id="btn_search"></button>
<div id="search-suggestion" class="suggestion" style="display: none"></div>
</div>
<div class="input-container" id="input-container__graph-input">
- <div contentEditable="true" class="input input-bar" id="textanalyser" placeholder="Add nodes or links" autofocus ></div>
+ <div contentEditable="true" tabindex="2" class="input input-bar" id="textanalyser" placeholder="Add nodes or links" autofocus ></div>
<button tabindex="-1" id="btn_add"></button>
<div id="input-suggestion" class="suggestion" style="display: none"></div>
</div>