svghmi/widget_back.ysl2
author Edouard Tisserant <edouard.tisserant@gmail.com>
Sun, 19 Apr 2020 22:01:12 +0200
branchsvghmi
changeset 2941 ef13a4007538
parent 2912 d320367eb2ad
child 2958 895d3f2b1786
permissions -rw-r--r--
SVGHMI: spread JS code from svghmi/scripts.ysl2 in other .ysl2 files, using dedicated preamble and epilogue namespaces
// widget_back.ysl2

template "widget[@type='Back']", mode="widget_defs" {
    param "hmi_element";

    |     on_click: function(evt) {
    |         if(jump_history.length > 1){
    |            jump_history.pop();
    |            let [page_name, index] = jump_history.pop();
    |            switch_page(page_name, index);
    |         }
    |     },
    |     init: function() {
    |         this.element.setAttribute("onclick", "hmi_widgets['«$hmi_element/@id»'].on_click(evt)");
    |     },
}