aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--js/crypto.js16
-rwxr-xr-xview/tpl/jot-header.tpl7
2 files changed, 19 insertions, 4 deletions
diff --git a/js/crypto.js b/js/crypto.js
index e9ab6961b..50282d18f 100644
--- a/js/crypto.js
+++ b/js/crypto.js
@@ -31,6 +31,9 @@ function red_encrypt(alg, elem,text) {
var enc_text = '';
var newdiv = '';
+ if(typeof tinyMCE !== "undefined")
+ tinyMCE.triggerSave(false,true);
+
var text = $(elem).val();
// key and hint need to be localised
@@ -63,7 +66,18 @@ function red_encrypt(alg, elem,text) {
// alert(newdiv);
- $(elem).val(newdiv);
+ // This might be a comment box on a page with a tinymce editor
+ // so check if there is a tinymce editor but also check the display
+ // property of our source element - because a tinymce instance
+ // will have display "none". If a normal textarea such as in a comment
+ // box has display "none" you wouldn't be able to type in it.
+
+ if($(elem).css('display') == 'none' && typeof tinyMCE !== "undefined") {
+ tinyMCE.activeEditor.setContent(newdiv);
+ }
+ else {
+ $(elem).val(newdiv);
+ }
// textarea = document.getElementById(elem);
// if (document.selection) {
diff --git a/view/tpl/jot-header.tpl b/view/tpl/jot-header.tpl
index eb7c5abdb..ce29443f7 100755
--- a/view/tpl/jot-header.tpl
+++ b/view/tpl/jot-header.tpl
@@ -299,12 +299,13 @@ function enableOnUser(){
function addeditortext(data) {
- if(plaintext == 'none') {
+ if(typeof tinyMCE !== "undefined") {
+ tinyMCE.execCommand('mceInsertRawHTML',false,data);
+ }
+ else {
var currentText = $("#profile-jot-text").val();
$("#profile-jot-text").val(currentText + data);
}
- else
- tinyMCE.execCommand('mceInsertRawHTML',false,data);
}
function h2b(s) {