configLoader.js 403 B

1234567891011121314
  1. if (!window.configLoadLoop) {
  2. window.configLoadLoop = setInterval(function () {
  3. document.head.removeChild(document.getElementById('configJS'))
  4. setConfigJS()
  5. }, 60 * 1000)
  6. }
  7. function setConfigJS() {
  8. const config = document.createElement('script')
  9. config.id = 'configJS'
  10. config.type = 'text/javascript'
  11. config.src = './config.js?t=' + Date.now()
  12. document.head.appendChild(config)
  13. }