mirror of
https://github.com/schollz/cowyo.git
synced 2023-08-10 21:13:00 +03:00
self-destruct works to Fix #48
This commit is contained in:
parent
705cdf8b87
commit
fe774bce48
@ -87,4 +87,12 @@ $(document).ready(function() {
|
||||
// updateText();
|
||||
updateInterval = setInterval(updateText, pollToGetNewestCopyInterval);
|
||||
}
|
||||
|
||||
|
||||
$('.postselfdestruct').click(function(event) {
|
||||
event.preventDefault();
|
||||
$('#emit_data').val("self-destruct\n\n"+currentText());
|
||||
doneTyping();
|
||||
});
|
||||
|
||||
});
|
||||
|
@ -119,6 +119,7 @@
|
||||
<li class="dropdown-header">Options</li>
|
||||
<li><a href="#" class="postencrypt">Encrypt</a></li>
|
||||
<li><a href="#" class="postlock">Lock</a></li>
|
||||
<li><a href="#" class="postselfdestruct">Self-dstruct</a></li>
|
||||
<li><a href="#" id="{{ .Title }}" class="deleteable">Erase</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
@ -240,6 +241,7 @@
|
||||
|
||||
|
||||
|
||||
|
||||
$('.postlock').click(function(event) {
|
||||
var pass1 = "";
|
||||
var pass2 = "";
|
||||
|
Loading…
Reference in New Issue
Block a user