Author: ygrego Date: 2015-06-08 09:32:27 +0000 (Mon, 08 Jun 2015) New Revision: 1591 Url: http://forge.nuiton.org/projects/sandbox/repository/revisions/1591 Log: Addition of following properties "_listeners", "_callbacks", "_eventManager", "_timerManager" and "_timeout" in method "init". Modified: oipf/js/impl/ApplicationManagerObject.js Modified: oipf/js/impl/ApplicationManagerObject.js =================================================================== --- oipf/js/impl/ApplicationManagerObject.js 2015-06-08 08:00:08 UTC (rev 1590) +++ oipf/js/impl/ApplicationManagerObject.js 2015-06-08 09:32:27 UTC (rev 1591) @@ -14,6 +14,12 @@ _hiddenSystemRootNode: null, init : function() { + this._listeners = {}; + this._callbacks = {}; + this._eventManager = new EventManager(); + + this._timerManager = new TimerManager(); + this._timeout = this._timerManager.createTimer.bind(this._timerManager, 0); this._hiddenSystemRootNode = []; this._createRootApplication(); },
participants (1)
-
ygregoï¼ users.nuiton.org