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 Feb 26, 2024. It is now read-only.
Polymer adds a null listener to the 'tap' event on document (something about enabling document-wide listeners):
// enable document-wide tap recognizer
if (event === 'tap') {
Polymer.Gestures.add(document, 'tap', null);
}
Unfortunately zone.js's addEventListener has issues with a null callback, and throws a few exceptions (calling toString() on the callback and trying to set properties on it).