Author: ygrego Date: 2015-05-28 15:17:21 +0000 (Thu, 28 May 2015) New Revision: 1550 Url: http://forge.nuiton.org/projects/sandbox/repository/revisions/1550 Log: Modification of the property "channelList" and call of the method "createChannelList" in constructor. Modified: oipf/js/utils/ChannelService.js Modified: oipf/js/utils/ChannelService.js =================================================================== --- oipf/js/utils/ChannelService.js 2015-05-28 15:10:59 UTC (rev 1549) +++ oipf/js/utils/ChannelService.js 2015-05-28 15:17:21 UTC (rev 1550) @@ -26,7 +26,8 @@ var channelFrance4 = new Channel(channelIdType, 22, 23, 24, channelName); this.currentChannel = currentChannel || channelArte; - this.channelList = new ChannelList(channelArte, channelFrance5, channelFrance4); + this.channelList = new ChannelList(); + this.createChannelList(); this.favouriteLists = new FavouriteListCollection(); this.currentFavouriteList = new FavouriteList(); },