Sha256: fb7fadcb90017a3f3315ec3189636d15d74e69b353372928687dbe37ac91f93f
Contents?: true
Size: 570 Bytes
Versions: 110
Compression:
Stored size: 570 Bytes
Contents
/** * $Id: editor_plugin_src.js 42 2006-08-08 14:32:24Z spocke $ * * @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);
Version data entries
110 entries across 88 versions & 11 rubygems