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
This commit is contained in:
Jean-Philippe Lang 2014-03-15 11:21:16 +00:00
parent 995ae083cd
commit 218e5f40a1
1 changed files with 8 additions and 0 deletions

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 %>