Commit a86e16ba authored by Lev Walkin's avatar Lev Walkin

information hiding

parent 990e2209
......@@ -610,13 +610,17 @@ function fileTypeChanged(s) {
var options_asn = document.getElementById("options-asn");
var options_bin = document.getElementById("options-bin");
if(s.value == "auto" || s.value == "asn1") {
options_bin.style.display = "none";
options_bin.style.position = "fixed";
options_bin.style.visibility = "hidden";
options_asn.style.display = "block";
options_asn.style.position = "relative";
options_asn.style.visibility = "visible";
} else {
options_asn.style.visibility = "hidden";
options_asn.style.position = "fixed";
options_asn.style.display = "none";
options_bin.style.display = "block";
options_bin.style.position = "relative";
options_bin.style.visibility = "visible";
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment