Skip to content

Instantly share code, notes, and snippets.

@garystorey
Created September 30, 2014 21:03
Show Gist options
  • Select an option

  • Save garystorey/c135b2deeb96ddea58e2 to your computer and use it in GitHub Desktop.

Select an option

Save garystorey/c135b2deeb96ddea58e2 to your computer and use it in GitHub Desktop.
Convert hammer to jquery plugin
// jQuery plugin
$.fn.hammer = function (event, cb) {
var $el = this;
var hmr = new Hammer($el.get(0));
hmr.on(event, $.proxy(cb, $el));
};
// Usage
$('.some-element').hammer('tap', function (e) {
console.log(e);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment