Author: ygrego Date: 2015-05-29 15:20:40 +0000 (Fri, 29 May 2015) New Revision: 1580 Url: http://forge.nuiton.org/projects/sandbox/repository/revisions/1580 Log: Addition of the property "window". Modified: oipf/js/impl/model/Application.js Modified: oipf/js/impl/model/Application.js =================================================================== --- oipf/js/impl/model/Application.js 2015-05-29 14:33:42 UTC (rev 1579) +++ oipf/js/impl/model/Application.js 2015-05-29 15:20:40 UTC (rev 1580) @@ -58,6 +58,18 @@ */ privateData: null, + /* + * Description: + * A strict subset of the DOM Window object representing the application. + * No symbols from the Window object are accessible through this property + * except the following: + * + * void postMessage (any message, String targetOrigin) + * + * Visibility Type: readonly Window + */ + window: null, + init: function(windowApp) { this.active = false; this.visible = false;