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
Line 168 of angular.hammer.js conditionally executes fn.call(...) if typeof fn === 'function'.
Corresponding code in angular.hammer.min.js only checks for existence, i.e. b&&b.call(...) where b is the fn variable from the unminified version.
This causes an error, as b is sometimes an angular object.
The text was updated successfully, but these errors were encountered:
Line 168 of angular.hammer.js conditionally executes fn.call(...) if typeof fn === 'function'.
Corresponding code in angular.hammer.min.js only checks for existence, i.e. b&&b.call(...) where b is the fn variable from the unminified version.
This causes an error, as b is sometimes an angular object.
The text was updated successfully, but these errors were encountered: