javascript - TypeError: 'undefined' is not an object (evaluating 'ev.touches.length') -


i have following error

typeerror: 'undefined' not object (evaluating 'ev.touches.length') line generates error 289 on jquery.hammer.js file:

// touch else if(sourceeventtype.match(/touch/)) {      count_touches = ev.touches.length; } 

..

$('#detail').on('touchend', '.close', function (e) {     $('.detail-overlay').trigger('touchend'); // web inspector error starts here }); 

how fix problem?


Comments

Popular posts from this blog

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

html - How to style widget with post count different than without post count -

url rewriting - How to redirect a http POST with urlrewritefilter -