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

ajax.js « setup « src « js - github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 447d7c76b2f7bbc19abccc6e65e729b838132922 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import $ from 'jquery';

/* eslint-disable no-unused-vars */
/**
 * Dummy implementation of the ajax page loader
 */
window.AJAX = {
    registerOnload: function (idx, func) {
        $(func);
    },
    registerTeardown: function (idx, func) {
    }
};