mirror of
https://github.com/e107inc/e107.git
synced 2025-10-13 14:04:51 +02:00
26 lines
477 B
JavaScript
26 lines
477 B
JavaScript
/**
|
|
* $Id$
|
|
*
|
|
* @author Moxiecode - based on work by Andrew Tetlaw
|
|
* @copyright Copyright © 2004-2008, Moxiecode Systems AB, All rights reserved.
|
|
*/
|
|
|
|
function init() {
|
|
SXE.initElementDialog('acronym');
|
|
if (SXE.currentAction == "update") {
|
|
SXE.showRemoveButton();
|
|
}
|
|
}
|
|
|
|
function insertAcronym() {
|
|
SXE.insertElement('acronym');
|
|
tinyMCEPopup.close();
|
|
}
|
|
|
|
function removeAcronym() {
|
|
SXE.removeElement('acronym');
|
|
tinyMCEPopup.close();
|
|
}
|
|
|
|
tinyMCEPopup.onInit.add(init);
|