exec

webix.exec(code)

webix.exec helper.

Please look into the linked official documentation.

Referenced by

helpers
require().

External references

Official documentation page.

Code

1
2
3
4
5
webix.exec=function(code){
    if (window.execScript)    //special handling for IE
        window.execScript(code);
    else window.eval(code);
};