[javascript] CKEditor 이미지 팝업 커스텀
쓰잘때기 없는 항목들 다 제거하고 싶을때 config.js에 다음 내용을 추가한다. CKEDITOR.on( 'dialogDefinition', function( ev ){ // Take the dialog name and its definition from the event data. var dialogName = ev.data.name; var dialogDefinition = ev.data.definition; // Check if the definition is from the dialog we're // interested in (the 'image' dialog). This dialog name found using DevTools plugin if ( dialogName == 'image' )..
2015.12.16