只读模式
group, 分享
评论更多问题
博客标签总是存在一个
This commit is contained in:
lealife
2015-06-15 18:01:48 +08:00
parent 7e458bb433
commit 6987a38820
1453 changed files with 114561 additions and 91536 deletions

27
public/tinymce/plugins/example/plugin.js Normal file → Executable file
View 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'}
]
});
}
});