ajax.js 256 B

12345678910111213
  1. "use strict";
  2. /* eslint-disable no-unused-vars */
  3. /**
  4. * Dummy implementation of the ajax page loader
  5. */
  6. var AJAX = {
  7. registerOnload: function registerOnload(idx, func) {
  8. $(func);
  9. },
  10. registerTeardown: function registerTeardown(idx, func) {}
  11. };