mirror of
https://github.com/e107inc/e107.git
synced 2025-07-29 10:50:25 +02:00
26 lines
542 B
JavaScript
26 lines
542 B
JavaScript
/**
|
|
* $Id: abbr.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('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);
|