11 lines
221 B
JavaScript
11 lines
221 B
JavaScript
!function()
|
|
{
|
|
var ctl = {};
|
|
|
|
/* class to represent a model-view-controller triple.
|
|
* all models subclass this
|
|
*/
|
|
class Controller {
|
|
constructor() { this.child_l_ = []; }
|
|
}; /*Controller*/
|
|
}();
|