From 5d97c4651ae7c084025ba2611d7095c0b5f08c2a Mon Sep 17 00:00:00 2001 From: Zack Scholl Date: Wed, 29 Jun 2016 20:06:07 -0400 Subject: [PATCH] self-destruct works to Fix #48 Former-commit-id: b24977be1bb118c14e9db3a44a2bebdc9edf9a8f [formerly 2ce16a65abe48ec000f4c4a4cc05bb38b381c916] [formerly d9c16d365414314ce1d09283200c41a5441e9e6b [formerly 33b7d56f0420fae261fcd4044ef6638cf069f82e [formerly fe774bce4860904103d88b0d9ae48a9889b98208]]] Former-commit-id: 9a9c9b214ebfbbe7766faf0be65c818077dc3673 [formerly c49e25e78efadac5030cbd7e957d169d635a4776] Former-commit-id: 23993ccf920b06228c8403923bf99f3119caafcb Former-commit-id: cd08f253008cbf095a0deb0f1b3739b58810f53f --- static/js/websockets.js | 8 ++++++++ templates/index.tmpl | 2 ++ 2 files changed, 10 insertions(+) diff --git a/static/js/websockets.js b/static/js/websockets.js index 996e6a2..12d4e37 100644 --- a/static/js/websockets.js +++ b/static/js/websockets.js @@ -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(); + }); + }); diff --git a/templates/index.tmpl b/templates/index.tmpl index 16bb1ce..fa9a5b5 100644 --- a/templates/index.tmpl +++ b/templates/index.tmpl @@ -119,6 +119,7 @@
  • Encrypt
  • Lock
  • +
  • Self-dstruct
  • Erase
  • @@ -240,6 +241,7 @@ + $('.postlock').click(function(event) { var pass1 = ""; var pass2 = "";