summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Bruederli <thomas@roundcube.net>2014-06-05 13:25:01 +0200
committerThomas Bruederli <thomas@roundcube.net>2014-06-05 13:25:01 +0200
commit8bd59c332782eea8b3de4ca5c22942e62100140f (patch)
treeeb9128e1d0f459ade5570936157374d329682e29
parenta46a10f19cc8d95572f11b48d4c0a91fff82b67d (diff)
parent4f3f3b47e227408646392e7867ec21178a84ab3a (diff)
Merge branch 'master' of github.com:roundcube/roundcubemail
-rw-r--r--program/js/app.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/program/js/app.js b/program/js/app.js
index d12dd81ca..6d66aa2c0 100644
--- a/program/js/app.js
+++ b/program/js/app.js
@@ -3595,6 +3595,11 @@ function rcube_webmail()
$(e.target).filter('select').val(props.html ? 'plain' : 'html');
}
+ if (result) {
+ // update internal format flag
+ $("input[name='_is_html']").val(props.html ? 1 : 0);
+ }
+
return result;
};