From 234481fd40f02a3cd2cccfea0909d248b82a83d8 Mon Sep 17 00:00:00 2001 From: Deryck Hodge Date: Tue, 13 Sep 2005 21:31:40 +0000 Subject: r10212: An IE fix. Must set initial values in the onload function. deryck (This used to be commit 3264ccf7438e003c3ed217f2d4a7315aceb05eb1) --- swat/scripting/client/desktop.js | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'swat/scripting') diff --git a/swat/scripting/client/desktop.js b/swat/scripting/client/desktop.js index bddd38b60c..e8f10f6efa 100644 --- a/swat/scripting/client/desktop.js +++ b/swat/scripting/client/desktop.js @@ -8,12 +8,6 @@ // The global widget we attach everything to var w = new QxWidget(); -with(w) { - setTop(0); - setLeft(0); - setWidth(docX()); - setHeight(docY()); -} /* Qooxdoo's browser sniffer doesn't distinguish IE version. We'll cover IE 6 for now, but these checks need to be @@ -143,6 +137,13 @@ function contextMenu(e) window.application.main = function() { + with(w) { + setTop(0); + setLeft(0); + setWidth(docX()); + setHeight(docY()); + } + var doc = this.getClientWindow().getClientDocument(); doc.addEventListener("contextmenu", contextMenu); doc.add(w); -- cgit