beremiz

SVGHMI: removed debug code forgotten here and there.
svghmi
2020-08-24, Edouard Tisserant
d1fc8c55c1d3
SVGHMI: removed debug code forgotten here and there.
// widget_back.ysl2
template "widget[@type='Back']", mode="widget_class"
||
class BackWidget extends Widget{
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)");
}
}
||