make clicking on a database update the detail view as well
authorchriskl <chriskl>
Mon, 15 Dec 2003 08:14:10 +0000 (08:14 +0000)
committerchriskl <chriskl>
Mon, 15 Dec 2003 08:14:10 +0000 (08:14 +0000)
links.js

index cc7c35373606352bcd7308de7bb743db6cca1458..e7d4d2f0a1ea569456aaab0a017782aa85b77818 100644 (file)
--- a/links.js
+++ b/links.js
@@ -2,13 +2,15 @@
  * Function for updating browser frame and topbar frame so that sqledit window 
  * pops up with properly selected database.
  *
- * $Id: links.js,v 1.1 2003/12/15 07:59:22 chriskl Exp $
+ * $Id: links.js,v 1.2 2003/12/15 08:14:10 chriskl Exp $
  */
 function updateLinks(getVars) {
-       var topbarLink = 'topbar.php' + getVars
-       var browserLink = 'browser.php' + getVars
+       var topbarLink = 'topbar.php' + getVars;
+       var browserLink = 'browser.php' + getVars;
+       var detailLink = 'database.php' + getVars;
                
        parent.frames.topbar.location = topbarLink;
        parent.frames.browser.location = browserLink;
+       parent.frames.detail.location = detailLink;
 }