Aleksander Machniak
2015-08-16 3fa3f156cae81ef6c453ee3969b95a0b77bb1824
Don't display not-sent-warning in compose page on save-pref action
1 files modified
4 ■■■ changed files
program/js/app.js 4 ●●● patch | view | raw | blame | history
program/js/app.js
@@ -653,7 +653,9 @@
    }
    // check input before leaving compose step
    if (this.task == 'mail' && this.env.action == 'compose' && $.inArray(command, this.env.compose_commands) < 0 && !this.env.server_error) {
    if (this.task == 'mail' && this.env.action == 'compose' && !this.env.server_error && command != 'save-pref'
      && $.inArray(command, this.env.compose_commands) < 0
    ) {
      if (!this.env.is_sent && this.cmp_hash != this.compose_field_hash() && !confirm(this.get_label('notsentwarning')))
        return false;