We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d286ccb commit 81f8483Copy full SHA for 81f8483
public/js/home.controller.js
@@ -430,14 +430,22 @@ var pollInterval = setInterval(
430
}, 15000
431
);
432
433
+function random_boolean() {
434
+ return Math.random() >= 0.5;
435
+}
436
+
437
var queueInterval = setInterval(
438
function() {
439
if (circleQueue.length > 0) {
440
activateCircle(circleQueue[0]);
441
442
circleQueue.shift();
443
444
+ if (random_boolean()) {
445
+ circleQueue.shift();
446
+ }
447
}
- }, 500
448
+ }, 200
449
450
451
setTimeout(
0 commit comments