svghmi/widget_back.ysl2
author Edouard Tisserant <edouard.tisserant@gmail.com>
Fri, 18 Dec 2020 11:50:28 +0100
branchsvghmi
changeset 3093 9986e691c2ee
parent 2958 895d3f2b1786
child 3232 7bdb766c2a4d
permissions -rw-r--r--
runtime: added restart/reset button in web settings. Accidentaly fixed web settings logging feature.
// 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)");
        }
    }
    ||