mirror of
https://github.com/urbit/shrub.git
synced 2024-12-14 20:02:51 +03:00
19 lines
628 B
JavaScript
19 lines
628 B
JavaScript
document.toggleDisplay = function(id1, id2) {
|
|
var id1 = 'show';
|
|
var id2 = 'edit';
|
|
var isDisplayed = function(id) {
|
|
return document.getElementById(id).style.display != 'none';
|
|
}
|
|
console.log(document.getElementById(id1));
|
|
console.log(document.getElementById(id2));
|
|
if (isDisplayed(id1)) {
|
|
document.getElementById(id1).style.display = 'none';
|
|
document.getElementById(id2).style.display = 'inherit';
|
|
} else {
|
|
document.getElementById(id1).style.display = 'inherit';
|
|
document.getElementById(id2).style.display = 'none';
|
|
}
|
|
};
|
|
|
|
document.getElementById('edit-btn').onclick = document.toggleDisplay;
|