Author: ygrego Date: 2015-06-08 15:13:04 +0000 (Mon, 08 Jun 2015) New Revision: 1606 Url: http://forge.nuiton.org/projects/sandbox/repository/revisions/1606 Log: Initialization of the property "_activeApplicationsList" in constructor. Modified: oipf/js/impl/ApplicationManagerObject.js Modified: oipf/js/impl/ApplicationManagerObject.js =================================================================== --- oipf/js/impl/ApplicationManagerObject.js 2015-06-08 13:58:26 UTC (rev 1605) +++ oipf/js/impl/ApplicationManagerObject.js 2015-06-08 15:13:04 UTC (rev 1606) @@ -174,6 +174,7 @@ this._timerManager = new TimerManager(); this._timeout = this._timerManager.createTimer.bind(this._timerManager, 0); this._hiddenSystemRootNode = []; + this._activeApplicationsList = new ApplicationCollection(); this._createRootApplication(); },