mirror of
https://github.com/schollz/cowyo.git
synced 2023-08-10 21:13:00 +03:00
Updated
Former-commit-id: 5334654001d9d96fa995187d82bc10ccac5bd950 [formerly 11b0ac0b130ab9496e0e1e8d9977061dae775121] [formerly 2c315ca9bf979584cd9508e875e074adc2732c81 [formerly 5c75398737169774eed3a9acd12798e4dc1c71ec [formerly40537cd672
]]] Former-commit-id: d1284ed619f11418c424951b1719a0a8ce36ca9b [formerly d140aafc13a72a5643b5fdd36cf2fb281c67d1af] Former-commit-id: c0b1a32dfe847e64080642d0f2ed2de864f24ff4 Former-commit-id:3da9ba3027
This commit is contained in:
@ -8,6 +8,7 @@ $(document).ready(function() {
|
||||
$('#emit').keyup(function() {
|
||||
clearTimeout(typingTimer);
|
||||
clearInterval(updateInterval);
|
||||
$('#saveInfo').removeClass().addClass("glyphicon glyphicon-floppy-remove");
|
||||
typingTimer = setTimeout(doneTyping, doneTypingInterval);
|
||||
});
|
||||
|
||||
@ -15,6 +16,7 @@ $(document).ready(function() {
|
||||
$('#emit').keydown(function() {
|
||||
clearTimeout(typingTimer);
|
||||
clearInterval(updateInterval);
|
||||
$('#saveInfo').removeClass().addClass("glyphicon glyphicon-floppy-remove");
|
||||
document.title = "[UNSAVED] " + title_name;
|
||||
});
|
||||
|
||||
@ -22,6 +24,7 @@ $(document).ready(function() {
|
||||
function doneTyping() {
|
||||
payload = JSON.stringify({ TextData: $('#emit_data').val(), Title: title_name, UpdateServer: true, UpdateClient: false })
|
||||
send(payload)
|
||||
$('#saveInfo').removeClass().addClass("glyphicon glyphicon-floppy-save");
|
||||
console.log("Done typing")
|
||||
updateInterval = setInterval(updateText, pollToGetNewestCopyInterval);
|
||||
document.title = "[SAVED] " + title_name;
|
||||
@ -50,6 +53,11 @@ $(document).ready(function() {
|
||||
$('#emit_data').val(data.TextData)
|
||||
document.title = "[LOADED] " + title_name;
|
||||
}
|
||||
console.log((data.TextData == "saved"))
|
||||
console.log(data.TextData)
|
||||
if (data.TextData == "saved") {
|
||||
$('#saveInfo').removeClass().addClass("glyphicon glyphicon-floppy-saved");
|
||||
}
|
||||
console.log(data)
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user