Merge branch 'cjd-fixed-it-with-hax' of github.com:xwiki-labs/cryptpad into cjd-fixed-it-with-hax

pull/1/head
Caleb James DeLisle 2016-03-25 16:50:17 +01:00
commit f3fb674504
1 changed files with 3 additions and 3 deletions

View File

@ -40,7 +40,7 @@ define([
var setRandomizedInterval = function (func, target, range) {
var timeout;
var again = function () {
setTimeout(function () {
timeout = setTimeout(function () {
again();
func();
}, target - (range / 2) + Math.random() * range);
@ -270,13 +270,13 @@ define([
var testInput = window.testInput = function (el, offset) {
var i = 0,
j = offset,
input = "The quick red fox jumped over the lazy brown dog. ",
input = "The quick red fox jumps over the lazy brown dog. ",
l = input.length,
errors = 0,
max_errors = 15,
interval;
var cancel = function () {
//if (interval) { interval.cancel(); }
if (interval) { interval.cancel(); }
};
interval = setRandomizedInterval(function () {