Author: ygrego Date: 2015-06-08 16:04:34 +0000 (Mon, 08 Jun 2015) New Revision: 1609 Url: http://forge.nuiton.org/projects/sandbox/repository/revisions/1609 Log: Addition of a parameter in ApplicationManager's constructor. Modified: oipf/js/impl/OipfObjectFactory.js Modified: oipf/js/impl/OipfObjectFactory.js =================================================================== --- oipf/js/impl/OipfObjectFactory.js 2015-06-08 16:01:53 UTC (rev 1608) +++ oipf/js/impl/OipfObjectFactory.js 2015-06-08 16:04:34 UTC (rev 1609) @@ -31,7 +31,9 @@ var modelFactory = new ModelFactory(); var dateUtils = new DateUtils(); this._oipfConfiguration = new OipfConfiguration(); - this.applicationManagerObject = new ApplicationManagerObject(); + this.applicationManagerObject = + new ApplicationManagerObject( + this._oipfConfiguration.applicationVisualizationMode); this.capabilitiesObject = new CapabilitiesObject(modelFactory); this._createDocument( this._oipfConfiguration.channelList, "_setChannelConfig");