aboutsummaryrefslogtreecommitdiffstats
path: root/library/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/attributes.js
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-03-20 20:47:31 -0700
committerfriendica <info@friendica.com>2012-03-20 20:47:31 -0700
commitf55779fd831029f764c885bf1fd026a7e94f08eb (patch)
tree8a441c0bc5f519f7cf303e5065cba750141b05a8 /library/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/attributes.js
parent810e69ef0a88a959ce9f5358377cdc1c7d4bd53a (diff)
downloadvolse-hubzilla-f55779fd831029f764c885bf1fd026a7e94f08eb.tar.gz
volse-hubzilla-f55779fd831029f764c885bf1fd026a7e94f08eb.tar.bz2
volse-hubzilla-f55779fd831029f764c885bf1fd026a7e94f08eb.zip
update tinymce to 3.5b2 to fix issues with FF 11 and pasting into code blocks
Diffstat (limited to 'library/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/attributes.js')
-rw-r--r--[-rwxr-xr-x]library/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/attributes.js17
1 files changed, 1 insertions, 16 deletions
diff --git a/library/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/attributes.js b/library/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/attributes.js
index d62a219e6..9c99995ad 100755..100644
--- a/library/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/attributes.js
+++ b/library/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/attributes.js
@@ -53,7 +53,6 @@ function insertAction() {
var inst = tinyMCEPopup.editor;
var elm = inst.selection.getNode();
- tinyMCEPopup.execCommand("mceBeginUndoLevel");
setAllAttribs(elm);
tinyMCEPopup.execCommand("mceEndUndoLevel");
tinyMCEPopup.close();
@@ -72,21 +71,7 @@ function setAttrib(elm, attrib, value) {
value = valueElm.value;
}
- if (value != "") {
- dom.setAttrib(elm, attrib.toLowerCase(), value);
-
- if (attrib == "style")
- attrib = "style.cssText";
-
- if (attrib.substring(0, 2) == 'on')
- value = 'return true;' + value;
-
- if (attrib == "class")
- attrib = "className";
-
- elm[attrib]=value;
- } else
- elm.removeAttribute(attrib);
+ dom.setAttrib(elm, attrib.toLowerCase(), value);
}
function setAllAttribs(elm) {