map.js 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. ;(function(){
  2. var map = {
  3. "commitId": "14a5a68bdf175acb02aada4e39937bd82677bfb6",
  4. "branchName": "release-client-5.17.x",
  5. "buildTime": "2024-02-22 09:45:36 GMT",
  6. "buildVersion": "5.17.726",
  7. "css": [
  8. "@zoom/client-scheduler/static/css/chunk-vendors.5c990af7.css",
  9. "@zoom/client-scheduler/static/css/index.1e453f20.css"
  10. ],
  11. "js": [
  12. "@zoom/client-scheduler/static/js/chunk-vendors.49875986.js",
  13. "@zoom/client-scheduler/static/js/index.fb66f59e.js"
  14. ],
  15. "key": "clientSchedulerResource"
  16. };
  17. var prefix = 'https://dev-integration.zoomdev.us/fe-static/';
  18. map.css && map.css.forEach(function (cssItem) {
  19. var linkTag = document.createElement('link');
  20. var cssURL = prefix + cssItem ;
  21. linkTag.href = cssURL;
  22. linkTag.setAttribute('rel','stylesheet');
  23. document.head.appendChild(linkTag);
  24. });
  25. map.js && map.js.forEach(function (jsItem) {
  26. var scriptTag = document.createElement("script");
  27. var jsURL = prefix + jsItem;
  28. scriptTag.setAttribute("src", jsURL);
  29. document.body.appendChild(scriptTag);
  30. });
  31. window.domainFromServer= "https://dev-integration.zoomdev.us/fe-static/";
  32. })();