Sha256: 9948d4d53886c95020ac6a6a8c83d0cfa288a9e8eb8e5d1cbcc7c8a9c06a073e
Contents?: true
Size: 541 Bytes
Versions: 575
Compression:
Stored size: 541 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
575 entries across 545 versions & 40 rubygems