mirror of
https://github.com/slawkens/myaac.git
synced 2025-04-26 17:29:21 +02:00
14 lines
313 B
JavaScript
14 lines
313 B
JavaScript
function MouseOverBigButton(source) {
|
|
if (source?.firstChild?.style) {
|
|
source.firstChild.style.visibility = "visible";
|
|
}
|
|
}
|
|
function MouseOutBigButton(source) {
|
|
if (source?.firstChild?.style) {
|
|
source.firstChild.style.visibility = "hidden";
|
|
}
|
|
}
|
|
function BigButtonAction(path) {
|
|
window.location = path;
|
|
}
|