Add function to webix.message, like toastr

webix_debug.js@v2.2.10

line 28256 var message = document.createElement("DIV");

message will not hide when mouseover

var message = document.createElement("DIV");
message.onmouseover = function() {
    if (t.timers[text.id]) {
        window.clearTimeout(t.timers[text.id]);
    }
};
message.onmouseout = function() {
    if (text.expire > 0)
        t.timers[text.id] = window.setTimeout(function() {
            t.hide(text.id);
        }, text.expire);
};

toastr:
http://codeseven.github.io/toastr/demo.html

Thanks for suggestions
We will try to add it as a part of next update