Files
web.ems/phpMyAdmin/setup/ajax.js
agtuser 16a3fd1e1b init
2024-11-11 17:56:00 +08:00

12 lines
248 B
JavaScript
Executable File

/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
* Dummy implementation of the ajax page loader
*/
var AJAX = {
registerOnload: function (idx, func) {
$(document).ready(func);
},
registerTeardown: function (idx, func) {
}
};