diff options
author | chriskl | 2003-12-28 08:15:34 +0000 |
---|---|---|
committer | chriskl | 2003-12-28 08:15:34 +0000 |
commit | 19af5c8ff2944960e51780c6d7636466701c75c1 (patch) | |
tree | d42920873cc47c84fc7572a7360a429b82122974 | |
parent | a4a4bd9a3d1350e7bbc72be45a7ddb9d513487b2 (diff) |
improvement on frame reload order from brydan
-rw-r--r-- | links.js | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; } |