In the kendo method:
function isScrollable(element) {
if (element.className.indexOf("k-auto-scrollable") > -1) {
return true;
}
var overflow = getComputedStyles(element, ["overflow"]).overflow;
return overflow == "auto" || overflow == "scroll";
}
The element.className is undefined when I right click to open my context menu that is attached to an SVG element. Can you put some more protection in against an undefined className for the next release please? I can patch it now but I thought it was worth bringing to your attention.
Thanks
Kenny