diff options
author | Kristian Lyngstol <kly@kly.no> | 2016-03-13 15:54:14 +0000 |
---|---|---|
committer | Kristian Lyngstol <kly@kly.no> | 2016-03-13 15:54:14 +0000 |
commit | e7eb548d99a324048d6fd08cb5a0243e47753451 (patch) | |
tree | 5d56669259b598f37541ba35104f6d344e18eb28 /web/nms.gathering.org/js/nms-data.js | |
parent | becdfbb6f176542252397649507d646ee24da610 (diff) |
NMSjs: Enable interactive movement of switches!
Fixes #24
God that felt good.
It's not very pretty, but it does seem very functional.
Diffstat (limited to 'web/nms.gathering.org/js/nms-data.js')
-rw-r--r-- | web/nms.gathering.org/js/nms-data.js | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/web/nms.gathering.org/js/nms-data.js b/web/nms.gathering.org/js/nms-data.js index 89d93fd..ef41a3a 100644 --- a/web/nms.gathering.org/js/nms-data.js +++ b/web/nms.gathering.org/js/nms-data.js @@ -71,8 +71,11 @@ var nmsData = nmsData || { /* * Maximum number of AJAX requests in transit before we start * skipping updates. + * + * A problem right now is that it will typically always hit the + * same thing since everything starts at the same time... */ - _ajaxThreshold: 5 + _ajaxThreshold: 10 }; |