debug_size_box_end¶
webix.debug_size_box_end(comp, sizes)¶webix.debug_size_box_end helper.
Please look into the linked official documentation.
References¶
- helpers
debug_size_indent(),debug_size_step(),log().
Referenced by¶
- mixins
FlexLayout().- views
baselayout(),fieldset(),layout(),multiview().
External references¶
Code¶
1 2 3 4 5 | webix.debug_size_box_end = function(comp, sizes){
if (!webix.debug_size) return;
webix.debug_size_indent--;
webix.log(webix.debug_size_step()+sizes.join(","));
};
|