Files
ESP3DLib/embedded/src/menu.js
Luc fa4c5a7731 Add new command to get the parameter without extra flag if any
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
2022-03-09 18:25:52 +08:00

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 };