Sha256: 0fcbdd10368adf7585ecea97b12a04668da7d172bafe56f01b7c0183c808ab75
Contents?: true
Size: 513 Bytes
Versions: 125
Compression:
Stored size: 513 Bytes
Contents
/** * abbr.js * * Copyright 2009, Moxiecode Systems AB * Released under LGPL License. * * License: http://tinymce.moxiecode.com/license * Contributing: http://tinymce.moxiecode.com/contributing */ function init() { SXE.initElementDialog('abbr'); if (SXE.currentAction == "update") { SXE.showRemoveButton(); } } function insertAbbr() { SXE.insertElement('abbr'); tinyMCEPopup.close(); } function removeAbbr() { SXE.removeElement('abbr'); tinyMCEPopup.close(); } tinyMCEPopup.onInit.add(init);
Version data entries
125 entries across 125 versions & 4 rubygems