Translated using Weblate (Estonian)
[phpmyadmin.git] / js / export_output.js
blobcd414e503f729fc2ee475b02369e723be08d4b35
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 });