diff options
author | przemyslawpluta <przemekpluta@hotmail.com> | 2015-11-11 22:59:47 +0000 |
---|---|---|
committer | przemyslawpluta <przemekpluta@hotmail.com> | 2015-11-11 22:59:47 +0000 |
commit | 0fedc1f10c4d5b9cb020e25c6e8440e31a7d1dd2 (patch) | |
tree | 7666da485e6298888ae7695f7ac872e0cb8f391a /lib | |
parent | 2b91d6514753a372d22d8f4050f020c26ef94684 (diff) | |
download | mongo-edu-0fedc1f10c4d5b9cb020e25c6e8440e31a7d1dd2.zip |
version bump
increase time betwean requests
Diffstat (limited to 'lib')
-rw-r--r-- | lib/courseware.js | 2 | ||||
-rw-r--r-- | lib/videos.js | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/courseware.js b/lib/courseware.js index 7ed606a..47d9b41 100644 --- a/lib/courseware.js +++ b/lib/courseware.js @@ -88,7 +88,7 @@ function getDetails(jar, count, bar, head, argv, callback) { }); } - setTimeout(function timeout() { getInfo(); }, 50 * i); + setTimeout(function timeout() { getInfo(); }, 200 * i); }; } diff --git a/lib/videos.js b/lib/videos.js index 924abd9..c2b323c 100644 --- a/lib/videos.js +++ b/lib/videos.js @@ -273,7 +273,7 @@ module.exports = { }); } - setTimeout(function timeout(){ getInfo(); }, 100 * i); + setTimeout(function timeout(){ getInfo(); }, 200 * i); }, items = [], list = [], i, count; |