blob: 681b448eacc2d0d366aaf9e96c7d1db021356dbb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* vim: set expandtab sw=4 ts=4 sts=4: */
/* eslint-disable no-unused-vars */
/**
* Dummy implementation of the ajax page loader
*/
var AJAX = {
registerOnload: function (idx, func) {
$(func);
},
registerTeardown: function (idx, func) {
}
};
|