Skip to content

Commit

Permalink
Update generated files
Browse files Browse the repository at this point in the history
  • Loading branch information
squadette committed Aug 25, 2019
1 parent 1614bef commit 967623f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions hammer.js
Original file line number Diff line number Diff line change
Expand Up @@ -343,6 +343,10 @@ function uniqueArray(src, key, sort) {
* @returns {String|Undefined} prefixed
*/
function prefixed(obj, property) {
// This allows gestures to be registered inside svgs in Android webviews
if (!obj) {
return undefined;
}
var prefix, prop;
var camelProp = property[0].toUpperCase() + property.slice(1);

Expand Down
Loading

0 comments on commit 967623f

Please sign in to comment.