Author: ygrego Date: 2015-05-28 09:27:15 +0000 (Thu, 28 May 2015) New Revision: 1521 Url: http://forge.nuiton.org/projects/sandbox/repository/revisions/1521 Log: Modification of the parameter name of method "_setChannelConfig", idem for the constructor of "channelService". Modified: oipf/js/impl/OipfObjectFactory.js Modified: oipf/js/impl/OipfObjectFactory.js =================================================================== --- oipf/js/impl/OipfObjectFactory.js 2015-05-28 09:26:18 UTC (rev 1520) +++ oipf/js/impl/OipfObjectFactory.js 2015-05-28 09:27:15 UTC (rev 1521) @@ -657,8 +657,8 @@ } }, - _setChannelConfig: function(channelListDocument) { - var channelService = new ChannelService(null, channelListDocument); + _setChannelConfig: function(channelListJson) { + var channelService = new ChannelService(null, channelListJson); this.channelConfig = new ChannelConfig(channelService); },