Author: ygrego Date: 2015-05-29 14:32:18 +0000 (Fri, 29 May 2015) New Revision: 1578 Url: http://forge.nuiton.org/projects/sandbox/repository/revisions/1578 Log: Access to channels service directly by the oipf factory. Modified: oipf/js/impl/VideoBroadcastObject.js Modified: oipf/js/impl/VideoBroadcastObject.js =================================================================== --- oipf/js/impl/VideoBroadcastObject.js 2015-05-29 13:34:11 UTC (rev 1577) +++ oipf/js/impl/VideoBroadcastObject.js 2015-05-29 14:32:18 UTC (rev 1578) @@ -143,12 +143,12 @@ this.init(); }, - init: function (channelService) { + init: function () { console.log("[INFO] constructor of VideoBroadcast class called."); this.playState = 0; this._listeners = {}; this._callbacks = {}; - this._channelService = channelService; + this._channelService = oipfObjectFactory._channelService; this._eventManager = new EventManager(); this._timerManager = new TimerManager();