Author: ygrego Date: 2015-05-29 13:28:34 +0000 (Fri, 29 May 2015) New Revision: 1576 Url: http://forge.nuiton.org/projects/sandbox/repository/revisions/1576 Log: The property "_channelService" is created with variable "channelService" passed to constructor. Modified: oipf/js/impl/VideoBroadcastObject.js Modified: oipf/js/impl/VideoBroadcastObject.js =================================================================== --- oipf/js/impl/VideoBroadcastObject.js 2015-05-29 13:20:49 UTC (rev 1575) +++ oipf/js/impl/VideoBroadcastObject.js 2015-05-29 13:28:34 UTC (rev 1576) @@ -143,12 +143,12 @@ this.init(); }, - init: function () { + init: function (channelService) { console.log("[INFO] constructor of VideoBroadcast class called."); this.playState = 0; this._listeners = {}; this._callbacks = {}; - this._channelService = new ChannelService(null); + this._channelService = channelService; this._eventManager = new EventManager(); this._timerManager = new TimerManager();