Author: ygrego Date: 2015-05-28 09:26:18 +0000 (Thu, 28 May 2015) New Revision: 1520 Url: http://forge.nuiton.org/projects/sandbox/repository/revisions/1520 Log: Modification of the parameter name of method "_setSearchManagerObject", idem for the constructor of "programmeService". Modified: oipf/js/impl/OipfObjectFactory.js Modified: oipf/js/impl/OipfObjectFactory.js =================================================================== --- oipf/js/impl/OipfObjectFactory.js 2015-05-28 09:20:33 UTC (rev 1519) +++ oipf/js/impl/OipfObjectFactory.js 2015-05-28 09:26:18 UTC (rev 1520) @@ -662,8 +662,8 @@ this.channelConfig = new ChannelConfig(channelService); }, - _setSearchManagerObject: function(programmeListDocument) { - var programmeService = new ProgrammeService(programmeListDocument); + _setSearchManagerObject: function(programmesJson) { + var programmeService = new ProgrammeService(programmesJson); this.searchManagerObject = new SearchManagerObject(this._modelFactory, programmeService); }