##// END OF EJS Templates
Select proper tracker and status for when hitting F5 with browsers that preserve select values on reload, eg. Firefox (#16259)....
Jean-Philippe Lang -
r12695:218e5f40a159
parent child
Show More
@@ -45,3 +45,11
45 <% end %>
45 <% end %>
46
46
47 <% heads_for_wiki_formatter %>
47 <% heads_for_wiki_formatter %>
48
49 <%= javascript_tag do %>
50 $(document).ready(function(){
51 $("#issue_tracker_id, #issue_status_id").each(function(){
52 $(this).val($(this).find("option[selected=selected]").val());
53 });
54 });
55 <% end %>
General Comments 0
You need to be logged in to leave comments. Login now