v1.0
只读模式 group, 分享 评论更多问题 博客标签总是存在一个
This commit is contained in:
27
public/tinymce/plugins/example/plugin.js
Normal file → Executable file
27
public/tinymce/plugins/example/plugin.js
Normal file → Executable file
@ -42,13 +42,26 @@ tinymce.PluginManager.add('example', function(editor, url) {
|
||||
// Open window with a specific url
|
||||
editor.windowManager.open({
|
||||
title: 'TinyMCE site',
|
||||
url: 'http://www.tinymce.com',
|
||||
width: 800,
|
||||
height: 600,
|
||||
buttons: [{
|
||||
text: 'Close',
|
||||
onclick: 'close'
|
||||
}]
|
||||
url: url + '/dialog.html',
|
||||
width: 600,
|
||||
height: 400,
|
||||
buttons: [
|
||||
{
|
||||
text: 'Insert',
|
||||
onclick: function() {
|
||||
// Top most window object
|
||||
var win = editor.windowManager.getWindows()[0];
|
||||
|
||||
// Insert the contents of the dialog.html textarea into the editor
|
||||
editor.insertContent(win.getContentWindow().document.getElementById('content').value);
|
||||
|
||||
// Close the window
|
||||
win.close();
|
||||
}
|
||||
},
|
||||
|
||||
{text: 'Close', onclick: 'close'}
|
||||
]
|
||||
});
|
||||
}
|
||||
});
|
||||
|
Reference in New Issue
Block a user