mirror of
https://github.com/schollz/cowyo.git
synced 2023-08-10 21:13:00 +03:00
Updated
This commit is contained in:
parent
f61b60b9c2
commit
40537cd672
@ -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)
|
||||
}
|
||||
|
||||
|
@ -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 }} <span id="saveInfo" class="glyphicon" aria-hidden="true"></span></a>
|
||||
</div>
|
||||
<div id="navbar" class="collapse navbar-collapse">
|
||||
<ul class="nav navbar-nav">
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user