From d323e30a576e242538d4d1f1eed296490d3164b9 Mon Sep 17 00:00:00 2001
From: Aleksander Machniak <alec@alec.pl>
Date: Wed, 09 Jul 2014 02:45:43 -0400
Subject: [PATCH] Revert "Fix bug where compose storage wasn't cleared on page unload (#1489818)"

---
 program/js/app.js |    8 +++-----
 1 files changed, 3 insertions(+), 5 deletions(-)

diff --git a/program/js/app.js b/program/js/app.js
index aa781f5..25f7b1e 100644
--- a/program/js/app.js
+++ b/program/js/app.js
@@ -590,6 +590,9 @@
     if (this.task == 'mail' && this.env.action == 'compose' && $.inArray(command, this.env.compose_commands) < 0 && !this.env.server_error) {
       if (this.cmp_hash != this.compose_field_hash() && !confirm(this.get_label('notsentwarning')))
         return false;
+
+      // remove copy from local storage if compose screen is left intentionally
+      this.remove_compose_data(this.env.compose_id);
     }
 
     // process external commands
@@ -3676,11 +3679,6 @@
           ref.compose_type_activity_last = ref.compose_type_activity;
         }
       }, 5000);
-
-      // remove data from local storage if compose screen is left
-      $(window).unload(function() {
-        ref.remove_compose_data(ref.env.compose_id);
-      });
     }
 
     // Unlock interface now that saving is complete

--
Gitblit v1.9.1