Implement draft autosaving for mail compose.

- Auto saving interval is every 2 minutes.
This commit is contained in:
Hadi Nategh 2014-09-22 12:54:25 +00:00
parent 6cd5e61979
commit 62cacc922d

View File

@ -191,7 +191,12 @@ app.classes.mail = AppJS.extend(
var that = this;
this.mail_isMainWindow = false;
this.compose_fieldExpander_hide();
// Set autosaving interval to 2 minutes for compose message
window.setInterval(function (){
that.saveAsDraft(null,that.et2.getWidgetById('button[saveAsDraft]'),'autosaving');
}, 120000);
/* Control focus actions on subject to handle expanders properly.*/
jQuery("#mail-compose_subject").on({
focus:function(){