acronym.js 556 B

12345678910111213141516171819202122232425
  1. /**
  2. * $Id: editor_plugin_src.js 42 2006-08-08 14:32:24Z spocke $
  3. *
  4. * @author Moxiecode - based on work by Andrew Tetlaw
  5. * @copyright Copyright © 2004-2008, Moxiecode Systems AB, All rights reserved.
  6. */
  7. function init() {
  8. SXE.initElementDialog('acronym');
  9. if (SXE.currentAction == "update") {
  10. SXE.showRemoveButton();
  11. }
  12. }
  13. function insertAcronym() {
  14. SXE.insertElement('acronym');
  15. tinyMCEPopup.close();
  16. }
  17. function removeAcronym() {
  18. SXE.removeElement('acronym');
  19. tinyMCEPopup.close();
  20. }
  21. tinyMCEPopup.onInit.add(init);