Welcome to mirror list, hosted at ThFree Co, Russian Federation.

export_output.js « js - github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cd414e503f729fc2ee475b02369e723be08d4b35 (plain)
1
2
3
4
5
6
7
8
9
/* vim: set expandtab sw=4 ts=4 sts=4: */
AJAX.registerOnload('export_output.js', function () {
    $(document).on('keydown', function (e) {
        if ((e.which || e.keyCode) === 116) {
            e.preventDefault();
            $('#export_refresh_form').submit();
        }
    });
});