Skip to content
This repository has been archived by the owner on Oct 15, 2022. It is now read-only.

Commit

Permalink
switch listen to touchend on mobile (#4488)
Browse files Browse the repository at this point in the history
  • Loading branch information
moollaza authored and pjhampton committed Sep 14, 2017
1 parent b49cd75 commit 5c391e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion share/goodie/calculator/calculator.js
Expand Up @@ -931,7 +931,7 @@ DDH.calculator = DDH.calculator || {};
*/
if(DDG.device.isMobile || DDG.device.isMobileDevice) {
// mobile
deviceType = 'touchstart';
deviceType = 'touchend';
} else {
// everything else
deviceType = 'click';
Expand Down

0 comments on commit 5c391e1

Please sign in to comment.