work.js 391 B

12345678910111213141516171819
  1. (function (global, factory) {
  2. if (typeof define === "function" && define.amd) {
  3. define("/apps/work", [], factory);
  4. } else if (typeof exports !== "undefined") {
  5. factory();
  6. } else {
  7. var mod = {
  8. exports: {}
  9. };
  10. factory();
  11. global.appsWork = mod.exports;
  12. }
  13. })(this, function () {
  14. "use strict";
  15. $(document).ready(function () {
  16. AppWork.run();
  17. });
  18. });