summaryrefslogtreecommitdiff
path: root/hugo/setup/ajax.js
blob: 98d985a4e0b6da76487e1e4d42ad82e24e5f2a70 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* 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) {
    }
};