2
0
mirror of https://github.com/slawkens/myaac.git synced 2025-05-01 19:59:21 +02:00
2017-05-01 20:05:36 +02:00

9 lines
238 B
JavaScript

function MouseOverBigButton(source) {
source.firstChild.style.visibility = "visible";
}
function MouseOutBigButton(source) {
source.firstChild.style.visibility = "hidden";
}
function BigButtonAction(path) {
window.location = path;
}