ckeditor イメージ プラグインを使用して、独自のカスタム イメージ リポジトリを構成しました。ここで、画像ダイアログのサイズを変更したいと思います。私はたくさんチェックしましたが、ファイルブラウザとckeditor自体の高さと幅を変更するためのプロパティを見つけました. ckeditor ツールバーの画像アイコンをクリックすると表示される画像ダイアログのサイズを変更するにはどうすればよいですか。
これが私のコードです:
CKEDITOR.editorConfig = function( config ) {
config.height = '350px';
//config.width = '1000px';
config.uiColor = '#d6d6d6';
config.fullPage = true;
config.extraPlugins = 'importdoc,docprops';
config.scayt_autoStartup = true;
config.filebrowserBrowseUrl = 'jcrPage';
config.filebrowserImageBrowseUrl = 'jcrPage';
config.filebrowserImageUploadUrl = 'imageUpload';
config.filebrowserWindowHeight = 500;
config.filebrowserWindowWidth = 500;
config.filebrowserImageWindowWidth = 700;
config.filebrowserImageWindowHeight = 700;
config.toolbarGroups = [
{ name: 'document', groups: [ 'mode'] },
{ name: 'editing', groups: [ 'find', 'selection'] },
{ name: 'basicstyles', groups: [ 'basicstyles', 'cleanup' ] },
{ name: 'paragraph', groups: [ 'list', 'indent', 'blocks', 'align' ] },
{ name: 'links' },
{ name: 'insert' },
{ name: 'styles' },
{ name: 'colors' },
];
config.removePlugins = 'flash, iframe, templates, div, source, smiley, save, newpage';
config.removeDialogTabs = 'image:advanced';
};
ありがとう