Author: ygrego Date: 2015-05-26 08:53:21 +0000 (Tue, 26 May 2015) New Revision: 1466 Url: http://forge.nuiton.org/projects/sandbox/repository/revisions/1466 Log: Addition of a parameter in constructor of object "ChannelService". Modified: oipf/js/impl/OipfObjectFactory.js Modified: oipf/js/impl/OipfObjectFactory.js =================================================================== --- oipf/js/impl/OipfObjectFactory.js 2015-05-26 08:47:59 UTC (rev 1465) +++ oipf/js/impl/OipfObjectFactory.js 2015-05-26 08:53:21 UTC (rev 1466) @@ -28,6 +28,8 @@ this._oipfConfiguration = new OipfConfiguration(); this.applicationManagerObject = new ApplicationManagerObject(); this.capabilitiesObject = new CapabilitiesObject(modelFactory); + this._createDocument( + this._oipfConfiguration.channelList, "_setChannelConfig"); //this.codManagerObject = new CodManagerObject(); //this.imsObject = new IMSObecjet(); //this.mdtfObject = new MDTFObject(); @@ -651,7 +653,7 @@ }, _setChannelConfig: function(channelListDocument) { - var channelService = new channelService(channelListDocument); + var channelService = new channelService(null, channelListDocument); this.channelConfig = new ChannelConfig(channelService); } });