Mercurial > public > madeira
view static/js/tinymce/jscripts/tiny_mce/plugins/example/js/dialog.js @ 175:1f9630c3f974
Remove Dick Dale photo from home page.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Wed, 19 Aug 2015 20:12:15 -0500 |
parents | 966cde8635c0 |
children |
line wrap: on
line source
tinyMCEPopup.requireLangPack(); var ExampleDialog = { init : function() { var f = document.forms[0]; // Get the selected contents as text and place it in the input f.someval.value = tinyMCEPopup.editor.selection.getContent({format : 'text'}); f.somearg.value = tinyMCEPopup.getWindowArg('some_custom_arg'); }, insert : function() { // Insert the contents from the input into the document tinyMCEPopup.editor.execCommand('mceInsertContent', false, document.forms[0].someval.value); tinyMCEPopup.close(); } }; tinyMCEPopup.onInit.add(ExampleDialog.init, ExampleDialog);