Skip to content

Instantly share code, notes, and snippets.

@yuheiy
Last active June 14, 2016 15:09
Show Gist options
  • Save yuheiy/5e0572e2989e8faf23e240df81afb6eb to your computer and use it in GitHub Desktop.
Save yuheiy/5e0572e2989e8faf23e240df81afb6eb to your computer and use it in GitHub Desktop.
for sp
'use strict';
var hasTouchEvents = 'ontouchend' in document;
var type = hasTouchEvents ? 'touchend' : 'click';
var onClick = function (target, listener) {
target.addEventListener(type, listener, false);
};
export default onClick;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment