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
{{ message }}
This repository was archived by the owner on Sep 5, 2024. It is now read-only.
Here is the angular-material-871f3ed9aaf14330ee72bf77479bbd2b.js?body=1:1160:
/**
* Helper function to find the Y aspect of various touch events.
**/
function getY(e) {
var touch = e.touches && e.touches.length ? e.touches[0] : e.changedTouches[0];
return touch.clientY;
}
I have inspected code a bit and see that both e.touches and e.changedTouches are null. Thus the last expression e.changedTouches[0] raises the error Cannot read property '0' of undefined.
I am not totally sure why does this happen but if I use the same md-text-float elements outside the md-bottom-sheet they work just well. Am I doing something wrong or is it a bug?