|
@@ -3,19 +3,19 @@ baseConfig.type = 'text/javascript'
|
|
|
baseConfig.src = './baseConfig.js'
|
|
|
document.head.appendChild(baseConfig)
|
|
|
|
|
|
-const config = document.createElement('script')
|
|
|
-config.id = 'configJS'
|
|
|
-config.type = 'text/javascript'
|
|
|
-config.src = './config.js?t=' + new Date().getTime()
|
|
|
-document.head.appendChild(config)
|
|
|
+setConfigJS()
|
|
|
|
|
|
if (!window.configLoadLoop) {
|
|
|
window.configLoadLoop = setInterval(function () {
|
|
|
document.head.removeChild(document.getElementById('configJS'))
|
|
|
- const config = document.createElement('script')
|
|
|
- config.id = 'configJS'
|
|
|
- config.type = 'text/javascript'
|
|
|
- config.src = './config.js?t=' + new Date().getTime()
|
|
|
- document.head.appendChild(config)
|
|
|
+ setConfigJS()
|
|
|
}, 60 * 1000)
|
|
|
}
|
|
|
+
|
|
|
+function setConfigJS() {
|
|
|
+ const config = document.createElement('script')
|
|
|
+ config.id = 'configJS'
|
|
|
+ config.type = 'text/javascript'
|
|
|
+ config.src = './config.js?t=' + new Date().getTime()
|
|
|
+ document.head.appendChild(config)
|
|
|
+}
|