We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ce0bbf commit 6823459Copy full SHA for 6823459
interface/web/themes/default_combobox/templates/main.tpl.htm
@@ -79,9 +79,9 @@
79
});
80
81
//Use jQuery submit with kespress Enter in panel filterbar
82
- jQuery(".panel .list input").live("keypress", function(event) {
83
- if (event.which == '13' && $(this).parents("tr").find("#Filter")) {
84
- $(this).parents("tr").find("#Filter").attr("onsubmit",$(".panel #Filter").attr("onclick")).submit();
+ jQuery(document).bind("keypress", function(event) {
+ if (event.which == '13' && $(".panel #Filter").length > 0) {
+ $(".panel #Filter").attr("onsubmit",$(".panel #Filter").attr("onclick")).submit();
85
}
86
87
0 commit comments