mirror of
https://github.com/sqlalchemy/sqlalchemy.git
synced 2026-05-06 08:56:51 -04:00
19 lines
401 B
JavaScript
19 lines
401 B
JavaScript
|
|
function togglePopbox(id, show, hide) {
|
|
var link = document.getElementById(id + "_link");
|
|
var div = document.getElementById(id + "_div");
|
|
if (div.style.display == 'block') {
|
|
div.style.display = 'none';
|
|
if (link) {
|
|
link.firstChild.nodeValue = show;
|
|
}
|
|
}
|
|
else if (div.style.display == 'none') {
|
|
div.style.display = 'block';
|
|
if (link) {
|
|
link.firstChild.nodeValue = hide;
|
|
}
|
|
}
|
|
}
|
|
|