aboutsummaryrefslogtreecommitdiff
path: root/public/assets/javascripts/ckeditor/plugins/studip-settings/plugin.js
blob: 186ba6785f5b95790e337b76b2bb0dbdce570219 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
CKEDITOR.plugins.add('studip-settings', {
    icons: 'settings',
    hidipi: true,
    lang: 'de,en',
    init: function (editor) {
        CKEDITOR.dialog.add(
            'settingsDialog',
            this.path + 'dialogs/settings.js'
        );
        editor.addCommand(
            'settings',
            new CKEDITOR.dialogCommand('settingsDialog')
        );
        editor.ui.addButton('settings', {
            label: editor.lang['studip-settings'].buttonLabel,
            command: 'settings',
            toolbar: 'settings'
        });
    }
});