Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
CKEditor3.6.4を使用しています
デフォルトでは、CKEditorはダブルクリックでダイアログプロパティを呼び出しますが、私が作業しているCKEditorではダイアログプロパティを呼び出していません。考えられる理由は何ですか?
ダブルクリックのプロパティはplugin.jsファイルで定義されています
editor.on( 'doubleclick', function( evt ) { var element = evt.data.element; if ( element.is( 'typeOfElement' ) ) evt.data.dialog = 'commandName'; }); },