2 * $Id: editor_plugin_src.js 42 2006-08-08 14:32:24Z spocke $
\r
4 * @author Moxiecode - based on work by Andrew Tetlaw
\r
5 * @copyright Copyright © 2004-2008, Moxiecode Systems AB, All rights reserved.
\r
9 SXE.initElementDialog('abbr');
\r
10 if (SXE.currentAction == "update") {
\r
11 SXE.showRemoveButton();
\r
15 function insertAbbr() {
\r
16 SXE.insertElement(tinymce.isIE ? 'html:abbr' : 'abbr');
\r
17 tinyMCEPopup.close();
\r
20 function removeAbbr() {
\r
21 SXE.removeElement('abbr');
\r
22 tinyMCEPopup.close();
\r
25 tinyMCEPopup.onInit.add(init);
\r