beremiz
Clone
Summary
Browse
Changes
Graph
Win32 runtime: fix build with gcc 9.3.0 from msys2
svghmi
2021-08-21, Edouard Tisserant
3bcd5ec67521
Win32 runtime: fix build with gcc 9.3.0 from msys2
// widget_back.ysl2
widget_desc("Back") {
longdesc
||
Back widget brings focus back to previous page in history when clicked.
||
shortdesc > Jump to previous page
}
// TODO: use es6
widget_class("Back")
||
on_click(evt) {
if(jump_history.length > 1){
jump_history.pop();
let [page_name, index] = jump_history.pop();
switch_page(page_name, index);
}
}
init() {
this.element.setAttribute("onclick", "hmi_widgets['"+this.element_id+"'].on_click(evt)");
}
||