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