1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-30 03:10:50 +02:00
Files
php-e107/e107_plugins/tinymce/plugins/xhtmlxtras/js/acronym.js
CaMer0n d2bc8727b6 Updated TinyMce to 3.2.5.
First incarnation of the admin configuration page added.
Language file still to come.
2009-07-01 02:52:11 +00:00

26 lines
531 B
JavaScript

/**
* $Id: acronym.js,v 1.1 2009-07-01 02:52:11 e107coders Exp $
*
* @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);