diff --git a/mail/js/app.js b/mail/js/app.js index 0dfab372c0..d4aa365273 100644 --- a/mail/js/app.js +++ b/mail/js/app.js @@ -247,7 +247,10 @@ app.classes.mail = AppJS.extend( // Set autosaving interval to 2 minutes for compose message this.W_INTERVALS.push(window.setInterval(function (){ - that.saveAsDraft(null, 'autosaving'); + if (jQuery('.ms-editor-wrap').length === 0) + { + that.saveAsDraft(null, 'autosaving'); + } }, 120000)); /* Control focus actions on subject to handle expanders properly.*/