I've created a custom CKEditor plugin with a unique dialog box setup. To include the dialog, I use the following code:
var customize_dialog = this.path + 'dialogs/customdialog.js' ;
CKEDITOR.dialog.add( myPluginName, customize_dialog);
Is there a way to determine which CKEditor config is being used within the dialog? This would allow me to tailor the variables accordingly based on the specific configuration loaded.
One possible solution could be to introduce a new config variable and check it within the dialog. But how can I access this config variable from the custom dialog itself?
Appreciate any insights or suggestions!