Skip to content

Instantly share code, notes, and snippets.

View tshafer's full-sized avatar
🏠
Working from home

Tom Shafer tshafer

🏠
Working from home
View GitHub Profile
@tshafer
tshafer / gist:306ed82964ee1f6e9d0dbfa324ccf340
Created August 4, 2018 18:52
ckeditor 5 dropdown plugin
import Plugin from '@ckeditor/ckeditor5-core/src/plugin';
import ButtonView from '@ckeditor/ckeditor5-ui/src/button/buttonview';
import {
createDropdown,
addToolbarToDropdown
} from '@ckeditor/ckeditor5-ui/src/dropdown/utils';
export default class MergeFields extends Plugin {
static get pluginName() {
return 'mergeFields';
}