Skip to content

Instantly share code, notes, and snippets.

@5thWall
Last active August 29, 2015 13:56
Show Gist options
  • Save 5thWall/9165304 to your computer and use it in GitHub Desktop.
Save 5thWall/9165304 to your computer and use it in GitHub Desktop.
thinksyncDirectives = angular.module('thinksyncDirectives', []);
thinksyncDirectives.directive('tsTouchstart', function() {
return function(scope, element, attr) {
element.on('click', function(event) {
scope.$apply(function() {
fn(scope, {$event:event});
});
});
};
});
thinksyncDirectives.directive('tsTouchend', function() {
return function(scope, element, attr) {
element.on('touchend', function(event) {
scope.$apply(function() {
fn(scope, {$event:event});
});
});
};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment