summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorchriskl2003-12-28 08:15:34 +0000
committerchriskl2003-12-28 08:15:34 +0000
commit19af5c8ff2944960e51780c6d7636466701c75c1 (patch)
treed42920873cc47c84fc7572a7360a429b82122974
parenta4a4bd9a3d1350e7bbc72be45a7ddb9d513487b2 (diff)
improvement on frame reload order from brydan
-rw-r--r--links.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/links.js b/links.js
index e7d4d2f0..4e0ef2f5 100644
--- a/links.js
+++ b/links.js
@@ -2,7 +2,7 @@
* Function for updating browser frame and topbar frame so that sqledit window
* pops up with properly selected database.
*
- * $Id: links.js,v 1.2 2003/12/15 08:14:10 chriskl Exp $
+ * $Id: links.js,v 1.3 2003/12/28 08:15:34 chriskl Exp $
*/
function updateLinks(getVars) {
var topbarLink = 'topbar.php' + getVars;
@@ -10,7 +10,7 @@ function updateLinks(getVars) {
var detailLink = 'database.php' + getVars;
parent.frames.topbar.location = topbarLink;
- parent.frames.browser.location = browserLink;
parent.frames.detail.location = detailLink;
+ parent.frames.browser.location = browserLink;
}