bgneal@183: /** bgneal@183: * abbr.js bgneal@45: * bgneal@183: * Copyright 2009, Moxiecode Systems AB bgneal@183: * Released under LGPL License. bgneal@183: * bgneal@183: * License: http://tinymce.moxiecode.com/license bgneal@183: * Contributing: http://tinymce.moxiecode.com/contributing bgneal@45: */ bgneal@45: bgneal@45: function init() { bgneal@45: SXE.initElementDialog('abbr'); bgneal@45: if (SXE.currentAction == "update") { bgneal@45: SXE.showRemoveButton(); bgneal@45: } bgneal@45: } bgneal@45: bgneal@45: function insertAbbr() { bgneal@183: SXE.insertElement('abbr'); bgneal@45: tinyMCEPopup.close(); bgneal@45: } bgneal@45: bgneal@45: function removeAbbr() { bgneal@45: SXE.removeElement('abbr'); bgneal@45: tinyMCEPopup.close(); bgneal@45: } bgneal@45: bgneal@45: tinyMCEPopup.onInit.add(init);