keepassxc-browser/tests/scripts/div2.js
2022-03-18 16:10:36 +02:00

17 lines
536 B
JavaScript

'use script';
document.getElementById('toggle2').addEventListener('click', function(e) {
const dialog = document.getElementById('dialog');
const outer = document.getElementById('outer');
const inner = document.getElementById('inner');
if (dialog.style.zIndex === 'auto') {
dialog.style.zIndex = 9999;
inner.style.margin = '0px';
outer.style.height = 'auto';
} else {
dialog.style.zIndex = 'auto';
inner.style.margin = '-197px';
outer.style.height = '0px';
}
});