|
@@ -13,9 +13,19 @@ CKEDITOR.define( [ 'collection', 'model' ], function( Collection, Model ) {
|
|
|
constructor( model, view ) {
|
|
constructor( model, view ) {
|
|
|
super();
|
|
super();
|
|
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
|
+ * Model of this controller.
|
|
|
|
|
+ */
|
|
|
this.model = model;
|
|
this.model = model;
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * View of this controller.
|
|
|
|
|
+ */
|
|
|
this.view = view;
|
|
this.view = view;
|
|
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
|
+ * A collection of child controllers.
|
|
|
|
|
+ */
|
|
|
this.controllers = new Collection();
|
|
this.controllers = new Collection();
|
|
|
}
|
|
}
|
|
|
|
|
|