mirror of
https://github.com/luc-github/ESP3DLib.git
synced 2026-03-14 11:56:53 +01:00
Typo update for consistency Update [ESP800] [ESP200] [ESP715] to be plain by default Update embedded page to support new [ESP800]json=yes command Update embedded page to link Marlin / ESP3DLib Update embedded page builder for esplib sources
16 lines
523 B
JavaScript
16 lines
523 B
JavaScript
function initMenus() {
|
|
document.getElementById("FWLink").addEventListener("click", function () {
|
|
window.open("https://github.com/MarlinFirmware/Marlin", "_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/ESP3DLib/wiki", "_blank");
|
|
});
|
|
}
|
|
|
|
export { initMenus };
|