summaryrefslogtreecommitdiff
path: root/program/js/tiny_mce/plugins/xhtmlxtras/js/abbr.js
diff options
context:
space:
mode:
Diffstat (limited to 'program/js/tiny_mce/plugins/xhtmlxtras/js/abbr.js')
-rw-r--r--program/js/tiny_mce/plugins/xhtmlxtras/js/abbr.js13
1 files changed, 8 insertions, 5 deletions
diff --git a/program/js/tiny_mce/plugins/xhtmlxtras/js/abbr.js b/program/js/tiny_mce/plugins/xhtmlxtras/js/abbr.js
index e84b6a837..4b51a2572 100644
--- a/program/js/tiny_mce/plugins/xhtmlxtras/js/abbr.js
+++ b/program/js/tiny_mce/plugins/xhtmlxtras/js/abbr.js
@@ -1,8 +1,11 @@
- /**
- * $Id: editor_plugin_src.js 42 2006-08-08 14:32:24Z spocke $
+/**
+ * abbr.js
*
- * @author Moxiecode - based on work by Andrew Tetlaw
- * @copyright Copyright © 2004-2008, Moxiecode Systems AB, All rights reserved.
+ * Copyright 2009, Moxiecode Systems AB
+ * Released under LGPL License.
+ *
+ * License: http://tinymce.moxiecode.com/license
+ * Contributing: http://tinymce.moxiecode.com/contributing
*/
function init() {
@@ -13,7 +16,7 @@ function init() {
}
function insertAbbr() {
- SXE.insertElement(tinymce.isIE ? 'html:abbr' : 'abbr');
+ SXE.insertElement('abbr');
tinyMCEPopup.close();
}