Author: ygrego Date: 2015-06-18 08:07:22 +0000 (Thu, 18 Jun 2015) New Revision: 1744 Url: http://forge.nuiton.org/projects/sandbox/repository/revisions/1744 Log: Now channel can have a logo if this information is available. Modified: oipf/lib/js/impl/OipfObjectFactory.js Modified: oipf/lib/js/impl/OipfObjectFactory.js =================================================================== --- oipf/lib/js/impl/OipfObjectFactory.js 2015-06-18 08:05:07 UTC (rev 1743) +++ oipf/lib/js/impl/OipfObjectFactory.js 2015-06-18 08:07:22 UTC (rev 1744) @@ -639,14 +639,18 @@ this._oipfConfiguration.channelOrigin, channelListJson.channelList.channel ); + this.channelConfig = new ChannelConfig(this._channelService); } _setSearchManagerObject(programmesJson) { - var oipfProgrammes = new ProgrammeHelper(this._channelService) + var somesChannelInfo = programmesJson.tv.channel; + + var oipfProgrammes = new ProgrammeHelper(this._channelService, somesChannelInfo) .initProgrammes(programmesJson.tv.programme); + var programmeService = new ProgrammeService(oipfProgrammes); - this.searchManagerObject = - new SearchManagerObject(programmeService); + + this.searchManagerObject = new SearchManagerObject(programmeService); } }
participants (1)
-
ygregoï¼ users.nuiton.org