configLoader.js 428 B

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