mirror of
https://git.mirrors.martin98.com/https://github.com/luc-github/ESP3D.git
synced 2025-10-15 07:41:32 +08:00
19 lines
582 B
JavaScript
19 lines
582 B
JavaScript
function initMenus() {
|
|
document.getElementById("FWLink").addEventListener("click", function () {
|
|
window.open("https://github.com/luc-github/ESP3D/tree/3.0", "_blank");
|
|
});
|
|
|
|
document.getElementById("UiLink").addEventListener("click", function () {
|
|
window.open(
|
|
"https://github.com/luc-github/ESP3D-WEBUI/tree/3.0",
|
|
"_blank"
|
|
);
|
|
});
|
|
|
|
document.getElementById("hlpLink").addEventListener("click", function () {
|
|
window.open("https://github.com/luc-github/ESP3D/wiki", "_blank");
|
|
});
|
|
}
|
|
|
|
export { initMenus };
|