repo.or.cz
/
phpmyadmin.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
Translated using Weblate (Estonian)
[phpmyadmin.git]
/
js
/
export_output.js
blob
cd414e503f729fc2ee475b02369e723be08d4b35
1
/* vim: set expandtab sw=4 ts=4 sts=4: */
2
AJAX.registerOnload('export_output.js', function () {
3
$(document).on('keydown', function (e) {
4
if ((e.which || e.keyCode) === 116) {
5
e.preventDefault();
6
$('#export_refresh_form').submit();
7
}
8
});
9
});