You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There's a page with a list. When you click on the list item the content for the item is loaded via ajax. In ajax callback .scrollTo() method is used to scroll the page up. And this method makes error. I've found that bug appears here:
getMatrixFromNode = function(/HTMLElement/node){ /WebKitCSSMatrix/
var doc = node.ownerDocument,
transform = window.getComputedStyle(node).webkitTransform;
return new WebKitCSSMatrix(transform);
}
typeof WebKitCSSMatrix returns 'object' instead of 'function'
The text was updated successfully, but these errors were encountered:
There's a page with a list. When you click on the list item the content for the item is loaded via ajax. In ajax callback .scrollTo() method is used to scroll the page up. And this method makes error. I've found that bug appears here:
getMatrixFromNode = function(/HTMLElement/node){ /WebKitCSSMatrix/
var doc = node.ownerDocument,
transform = window.getComputedStyle(node).webkitTransform;
typeof WebKitCSSMatrix returns 'object' instead of 'function'
The text was updated successfully, but these errors were encountered: