Author: ygrego Date: 2015-05-29 13:17:46 +0000 (Fri, 29 May 2015) New Revision: 1574 Url: http://forge.nuiton.org/projects/sandbox/repository/revisions/1574 Log: The property "_channelService" is created in method "setChannelConfig" and passed in paramerter of the "ChannelConfig" constructor. Modified: oipf/js/impl/OipfObjectFactory.js Modified: oipf/js/impl/OipfObjectFactory.js =================================================================== --- oipf/js/impl/OipfObjectFactory.js 2015-05-29 13:13:46 UTC (rev 1573) +++ oipf/js/impl/OipfObjectFactory.js 2015-05-29 13:17:46 UTC (rev 1574) @@ -658,13 +658,13 @@ }, _setChannelConfig: function(channelListJson) { - var channelService = + this._channelService = new ChannelService(this._oipfConfiguration.currentChannel, this._oipfConfiguration.channelNumber, this._oipfConfiguration.channelOrigin, channelListJson.channelList.channel ); - this.channelConfig = new ChannelConfig(channelService); + this.channelConfig = new ChannelConfig(this._channelService); }, _setSearchManagerObject: function(programmesJson) {