From ff82742c2219bd116bb5f03632a92ada76abc400 Mon Sep 17 00:00:00 2001 From: Zack Scholl Date: Sun, 7 Feb 2016 14:09:48 -0500 Subject: [PATCH] Lowered polling frequency Former-commit-id: 17fe9d49b8b7962f34f51a5925936ed15c7e41b8 [formerly 733c5b11d9094bf8e23d0aadbaa553d2cf9a9661] [formerly 3dc3a6cde964667ebc5258e73f248f050578662d [formerly 606beed1333ccc58f290103aead83b0447381ca3 [formerly 2134f25d3a5662ba887c88e0a9b58b02a5ed04fe]]] Former-commit-id: dd3115c3e0e720e8723d39939a95b66e65ba0b11 [formerly 7181694ef6378ef47050416285bb8d877505a936] Former-commit-id: 216e497cd2a99c6e90c3fbda0075de88b1f13ddc Former-commit-id: 8b0511b0e7e62b4399ef6b737325dce4bc9d271e --- static/js/cowyo.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/static/js/cowyo.js b/static/js/cowyo.js index a80fbe5..b8aaa7d 100644 --- a/static/js/cowyo.js +++ b/static/js/cowyo.js @@ -3,7 +3,7 @@ $(document).ready(function() { var typingTimer; //timer identifier var updateInterval; var doneTypingInterval = 100; //time in ms, 5 second for example - + var pollToGetNewestCopyInterval = 10000; //on keyup, start the countdown $('#emit').keyup(function() { clearTimeout(typingTimer); @@ -23,7 +23,7 @@ $(document).ready(function() { payload = JSON.stringify({ TextData: $('#emit_data').val(), Title: title_name, UpdateServer: true, UpdateClient: false }) send(payload) console.log("Done typing") - updateInterval = setInterval(updateText, doneTypingInterval); + updateInterval = setInterval(updateText, pollToGetNewestCopyInterval); document.title = "[SAVED] " + title_name; } @@ -55,6 +55,6 @@ $(document).ready(function() { c.onopen = function(){ updateText(); - updateInterval = setInterval(updateText, doneTypingInterval); + updateInterval = setInterval(updateText, pollToGetNewestCopyInterval); } });