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 40537cd672
]]
Former-commit-id: d1284ed619f11418c424951b1719a0a8ce36ca9b [formerly d140aafc13a72a5643b5fdd36cf2fb281c67d1af]
Former-commit-id: c0b1a32dfe847e64080642d0f2ed2de864f24ff4
This commit is contained in:
parent
6bb6d20b06
commit
3da9ba3027
@ -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