1
0
mirror of https://github.com/schollz/cowyo.git synced 2023-08-10 21:13:00 +03:00
This commit is contained in:
Zack Scholl 2016-02-10 18:37:30 -05:00
parent f61b60b9c2
commit 40537cd672
3 changed files with 10 additions and 1 deletions

View File

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

View File

@ -55,7 +55,7 @@
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="/">{{ .WikiName }}</a>
<a class="navbar-brand" href="/">{{ .WikiName }} &nbsp;<span id="saveInfo" class="glyphicon" aria-hidden="true"></span></a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">

View File

@ -50,6 +50,7 @@ func wshandler(w http.ResponseWriter, r *http.Request) {
if err != nil {
panic(err)
}
m.TextData = "saved"
}
if m.UpdateClient {
m.UpdateClient = len(m.TextData) != len(p.CurrentText)