Files
crm.e5.pl/include/javascript/tiny_mce/plugins/xhtmlxtras/js/abbr.js

26 lines
484 B
JavaScript
Raw Normal View History

2024-04-27 09:23:34 +02:00
/**
*
* @author Moxiecode - based on work by Andrew Tetlaw
* @copyright Copyright <EFBFBD> 2004-2008, Moxiecode Systems AB, All rights reserved.
*/
function init() {
SXE.initElementDialog('abbr');
if (SXE.currentAction == "update") {
SXE.showRemoveButton();
}
}
function insertAbbr() {
SXE.insertElement(tinymce.isIE ? 'html:abbr' : 'abbr');
tinyMCEPopup.close();
}
function removeAbbr() {
SXE.removeElement('abbr');
tinyMCEPopup.close();
}
tinyMCEPopup.onInit.add(init);