Sha256: cc6d5e4dd5e99ebf71858830408c0d8883402d9dd3dc23f6b47bc0bda8a60c01
Contents?: true
Size: 622 Bytes
Versions: 1
Compression:
Stored size: 622 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-2007, Moxiecode Systems AB, All rights reserved. */ function preinit() { // Initialize tinyMCE.setWindowArg('mce_windowresize', false); } function init() { tinyMCEPopup.resizeToInnerSize(); SXE.initElementDialog('acronym'); if (SXE.currentAction == "update") { SXE.showRemoveButton(); } } function insertAcronym() { SXE.insertElement('acronym'); tinyMCEPopup.close(); } function removeAcronym() { SXE.removeElement('acronym'); tinyMCEPopup.close(); }
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rails_tinymce-0.0.1 | assets/public/javascripts/tiny_mce/plugins/xhtmlxtras/jscripts/acronym.js |