https

returns true if the protocol of the page is https and false, if it's http

boolean https;

Example

if (webix.env.https)
    do_something();

Back to top