bgneal@45: /** bgneal@45: * abbr.js bgneal@45: * bgneal@45: * Copyright 2009, Moxiecode Systems AB bgneal@45: * Released under LGPL License. bgneal@45: * bgneal@45: * License: http://tinymce.moxiecode.com/license bgneal@45: * 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@45: 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);