зеркало из https://github.com/mozilla/gecko-dev.git
12 строки
304 B
JavaScript
12 строки
304 B
JavaScript
|
var buttonClicked = false;
|
||
|
var button = document.getElementById("errorTryAgain");
|
||
|
button.onclick = function() {
|
||
|
if (buttonClicked) {
|
||
|
button.style.visibility = "hidden";
|
||
|
} else {
|
||
|
var newLabel = button.getAttribute("label2");
|
||
|
button.textContent = newLabel;
|
||
|
buttonClicked = true;
|
||
|
}
|
||
|
};
|