tinymce-dynamic-load-script.js 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. exports.ids = [43];
  2. exports.modules = {
  3. /***/ 193:
  4. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  5. "use strict";
  6. __webpack_require__.r(__webpack_exports__);
  7. let callbacks = [];
  8. function loadedTinymce() {
  9. // to fixed https://github.com/PanJiaChen/vue-element-admin/issues/2144
  10. // check is successfully downloaded script
  11. return window.tinymce;
  12. }
  13. const dynamicLoadScript = (src, callback) => {
  14. const existingScript = document.getElementById(src);
  15. const cb = callback || function () {};
  16. if (!existingScript) {
  17. const script = document.createElement('script');
  18. script.src = src; // src url for the third-party library being loaded.
  19. script.id = src;
  20. document.body.appendChild(script);
  21. callbacks.push(cb);
  22. const onEnd = 'onload' in script ? stdOnEnd : ieOnEnd;
  23. onEnd(script);
  24. }
  25. if (existingScript && cb) {
  26. if (loadedTinymce()) {
  27. cb(null, existingScript);
  28. } else {
  29. callbacks.push(cb);
  30. }
  31. }
  32. function stdOnEnd(script) {
  33. script.onload = function () {
  34. // this.onload = null here is necessary
  35. // because even IE9 works not like others
  36. this.onerror = this.onload = null;
  37. for (const cb of callbacks) {
  38. cb(null, script);
  39. }
  40. callbacks = null;
  41. };
  42. script.onerror = function () {
  43. this.onerror = this.onload = null;
  44. cb(new Error('Failed to load ' + src), script);
  45. };
  46. }
  47. function ieOnEnd(script) {
  48. script.onreadystatechange = function () {
  49. if (this.readyState !== 'complete' && this.readyState !== 'loaded') return;
  50. this.onreadystatechange = null;
  51. for (const cb of callbacks) {
  52. cb(null, script); // there is no way to catch loading errors in IE8
  53. }
  54. callbacks = null;
  55. };
  56. }
  57. };
  58. /* harmony default export */ __webpack_exports__["default"] = (dynamicLoadScript);
  59. /***/ })
  60. };;
  61. //# sourceMappingURL=tinymce-dynamic-load-script.js.map