UNPKG

susi-forge

Version:
17 lines (13 loc) 408 B
var client = ControllerFactory.create('client', { init: function () { this.headController = ControllerFactory.get('head'); this.contentController = ControllerFactory.get('content'); this._init(); }, update: function () { console.info('client update'); this.headController.update(); this.contentController.update(); }, }); client.start();