Skip to content

Commit e0d184f

Browse files
committed
Update ckeditor
Added toolbarGroups and removePlugins on configuration object. http://docs.ckeditor.com/#!/guide/dev_toolbar
1 parent 1fa34a5 commit e0d184f

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

ckeditor/ckeditor.d.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -550,11 +550,17 @@ declare module CKEDITOR {
550550

551551
}
552552

553+
interface toolbarGroups {
554+
name?: string;
555+
groups?: string[];
556+
}
553557

554558
interface config {
555559
startupMode?: string;
556560
removeButtons?: string;
561+
removePlugins?: string;
557562
toolbar?: any;
563+
toolbarGroups?: toolbarGroups[];
558564
skin?: string;
559565
language?: string;
560566
plugins?: string;

0 commit comments

Comments
 (0)