Current oav website

This commit is contained in:
Charlie Root
2023-03-20 12:18:38 +01:00
commit a096ce07cf
3270 changed files with 261778 additions and 0 deletions

View File

@ -0,0 +1,15 @@
CKEDITOR.plugins.add('externalmedia', {
requires:"dialog",
init: function(editor) {
editor.addCommand('externalMediaCommand', new CKEDITOR.dialogCommand('externalMediaDialog'));
CKEDITOR.dialog.add('externalMediaDialog', this.path+'dialogs/popup.js');
editor.ui.addButton("ExternalMedia", {
label: extmedia_title,
command: 'externalMediaCommand',
icon: this.path+'icons/icon.png'
});
}
});