mirror of
https://github.com/redmine/redmine.git
synced 2026-07-15 13:53:17 +02:00
Removed submit_query_form function.
git-svn-id: http://svn.redmine.org/redmine/trunk@13617 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
@@ -88,7 +88,7 @@ function initFilters() {
|
||||
toggleMultiSelect($(this).siblings('select'));
|
||||
});
|
||||
$('#filters-table').on('keypress', 'input[type=text]', function(e) {
|
||||
if (e.keyCode == 13) submit_query_form("query_form");
|
||||
if (e.keyCode == 13) $(this).closest('form').submit();
|
||||
});
|
||||
}
|
||||
|
||||
@@ -287,10 +287,6 @@ function toggleMultiSelect(el) {
|
||||
}
|
||||
}
|
||||
|
||||
function submit_query_form(id) {
|
||||
$('#'+id).submit();
|
||||
}
|
||||
|
||||
function showTab(name, url) {
|
||||
$('div#content .tab-content').hide();
|
||||
$('div.tabs a').removeClass('selected');
|
||||
|
||||
Reference in New Issue
Block a user