1
0
mirror of https://github.com/schollz/cowyo.git synced 2023-08-10 21:13:00 +03:00

Lowered polling frequency

Former-commit-id: 17fe9d49b8b7962f34f51a5925936ed15c7e41b8 [formerly 733c5b11d9094bf8e23d0aadbaa553d2cf9a9661] [formerly 3dc3a6cde964667ebc5258e73f248f050578662d [formerly 606beed1333ccc58f290103aead83b0447381ca3 [formerly 2134f25d3a]]]
Former-commit-id: dd3115c3e0e720e8723d39939a95b66e65ba0b11 [formerly 7181694ef6378ef47050416285bb8d877505a936]
Former-commit-id: 216e497cd2a99c6e90c3fbda0075de88b1f13ddc
Former-commit-id: 8b0511b0e7
This commit is contained in:
Zack Scholl 2016-02-07 14:09:48 -05:00
parent 635bb879db
commit ff82742c22

View File

@ -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);
}
});