You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
554 B
JavaScript
22 lines
554 B
JavaScript
CKEDITOR.plugins.add( 'hianamedia', {
|
|
icons: 'hianamedia',
|
|
init: function( editor ) {
|
|
|
|
editor.addCommand( 'hianamedia', {
|
|
exec: function( editor ) {
|
|
openKCFinder_Content();
|
|
//var now = new Date();
|
|
//editor.insertHtml( 'The current date and time is: <em>' + now.toString() + '</em>' );
|
|
}
|
|
});
|
|
|
|
editor.ui.addButton( 'hianamedia', {
|
|
label: '多媒体中心',
|
|
command: 'hianamedia',
|
|
toolbar: 'insert'
|
|
});
|
|
|
|
|
|
|
|
}
|
|
}); |