svghmi/widget_back.ysl2
author Edouard Tisserant
Mon, 30 Mar 2020 11:06:12 +0200
branchsvghmi
changeset 2905 3d7e3866cc51
parent 2902 1fcb50af0335
child 2912 d320367eb2ad
permissions -rw-r--r--
SVGHMI: prevent man-made memory leak by limiting back button history items count to 42
// widget_back.ysl2

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

    |     on_click: function(evt) {
    |         console.log("Back !");
    |         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)");
    |     },
}