Browse Source

Select proper tracker and status for when hitting F5 with browsers that preserve select values on reload, eg. Firefox (#16259).

git-svn-id: http://svn.redmine.org/redmine/trunk@12970 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/2.6.0
Jean-Philippe Lang 10 years ago
parent
commit
218e5f40a1
1 changed files with 8 additions and 0 deletions
  1. 8
    0
      app/views/issues/_form.html.erb

+ 8
- 0
app/views/issues/_form.html.erb View File

@@ -45,3 +45,11 @@
<% end %>

<% heads_for_wiki_formatter %>

<%= javascript_tag do %>
$(document).ready(function(){
$("#issue_tracker_id, #issue_status_id").each(function(){
$(this).val($(this).find("option[selected=selected]").val());
});
});
<% end %>

Loading…
Cancel
Save