##// END OF EJS Templates
Added tabindex property on wiki toolbar buttons and 'new category' link....
Jean-Philippe Lang -
r1073:d5b9dedca229
parent child
Show More
@@ -21,7 +21,7
21 <%= prompt_to_remote(l(:label_issue_category_new),
21 <%= prompt_to_remote(l(:label_issue_category_new),
22 l(:label_issue_category_new), 'category[name]',
22 l(:label_issue_category_new), 'category[name]',
23 {:controller => 'projects', :action => 'add_issue_category', :id => @project},
23 {:controller => 'projects', :action => 'add_issue_category', :id => @project},
24 :class => 'small') if authorize_for('projects', 'add_issue_category') %></p>
24 :class => 'small', :tabindex => 199) if authorize_for('projects', 'add_issue_category') %></p>
25 </div>
25 </div>
26
26
27 <div class="splitcontentright">
27 <div class="splitcontentright">
@@ -81,6 +81,7 jsButton.prototype.draw = function() {
81
81
82 var button = document.createElement('button');
82 var button = document.createElement('button');
83 button.setAttribute('type','button');
83 button.setAttribute('type','button');
84 button.tabIndex = 200;
84 if (this.className) button.className = this.className;
85 if (this.className) button.className = this.className;
85 button.title = this.title;
86 button.title = this.title;
86 var span = document.createElement('span');
87 var span = document.createElement('span');
General Comments 0
You need to be logged in to leave comments. Login now