ctrl-enter in sql editor to submit query instead of having to click "go" button
This commit is contained in:
parent
80d524c202
commit
d6b8d71f95
@ -1195,7 +1195,12 @@ $(document).ready(function(){
|
||||
}
|
||||
});
|
||||
|
||||
$('#sqlquery').focus();
|
||||
$('#sqlquery').focus().keydown(function (e) {
|
||||
if (e.ctrlKey && e.keyCode == 13) {
|
||||
$("#sqlqueryform").submit();
|
||||
}
|
||||
});
|
||||
|
||||
if ($('#input_username')) {
|
||||
if ($('#input_username').val() == '') {
|
||||
$('#input_username').focus();
|
||||
|
||||
Loading…
Reference in New Issue
Block a user