diff options
-rw-r--r-- | .eslintrc.json | 1 | ||||
-rw-r--r-- | interface/js/main.js | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/.eslintrc.json b/.eslintrc.json index b57c7129d..c9fa15153 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -16,6 +16,7 @@ "dot-location": ["error", "property"], "func-names": "off", // "func-style": ["error", "declaration"], + "function-call-argument-newline": "off", "id-length": ["error", { "min": 1 }], "indent": ["error", 4, { "SwitchCase": 1 }], // "max-len": ["error", { "code": 120 }], diff --git a/interface/js/main.js b/interface/js/main.js index d5ca99a94..a05c2643f 100644 --- a/interface/js/main.js +++ b/interface/js/main.js @@ -21,7 +21,8 @@ requirejs.config({ d3evolution: {exports:"D3Evolution", deps:["d3", "jquery"]}, footable: {deps:["bootstrap", "jquery"]}, stickytabs: {deps:["jquery"]} - } + }, + waitSeconds: 30, }); document.title = window.location.hostname + |