devilbox/.devilbox/www/htdocs/vendor/phppgadmin-5.6.0/links.js
2018-12-28 22:38:09 +01:00

17 lines
520 B
JavaScript

/**
* Function for updating browser frame and topbar frame so that sqledit window
* pops up with properly selected database.
*
* $Id: links.js,v 1.4 2004/07/13 15:24:41 jollytoad Exp $
*/
function updateLinks(getVars) {
var topbarLink = 'topbar.php' + getVars;
var browserLink = 'browser.php' + getVars;
var detailLink = 'redirect.php' + getVars + 'section=database';
parent.frames.topbar.location = topbarLink;
parent.frames.detail.location = detailLink;
parent.frames.browser.location = browserLink;
}