Author: ygrego Date: 2015-05-29 15:23:36 +0000 (Fri, 29 May 2015) New Revision: 1581 Url: http://forge.nuiton.org/projects/sandbox/repository/revisions/1581 Log: Addition of the properties "_currentApplication" and "_rootApplication". Addition of the method "_createRootApplication" and this one is called in constructor. Modified: oipf/js/impl/ApplicationManagerObject.js Modified: oipf/js/impl/ApplicationManagerObject.js =================================================================== --- oipf/js/impl/ApplicationManagerObject.js 2015-05-29 15:20:40 UTC (rev 1580) +++ oipf/js/impl/ApplicationManagerObject.js 2015-05-29 15:23:36 UTC (rev 1581) @@ -7,8 +7,16 @@ */ var ApplicationManagerObject = Class.extend({ - init : function(){ + _currentApplication: null, + _rootApplication: null, + + init : function() { + this._createRootApplication(); + }, + + _createRootApplication: function() { + this._rootApplication = new Application(window); } }); \ No newline at end of file