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