Skip to content

Instantly share code, notes, and snippets.

@bkstorm
bkstorm / controller.js
Created April 12, 2017 03:46 — forked from BobNisco/controller.js
onLongPress AngularJS Directive - Great for mobile!
// Somewhere in your controllers for this given example
// Example functions
$scope.itemOnLongPress = function(id) {
console.log('Long press');
}
$scope.itemOnTouchEnd = function(id) {
console.log('Touch end');
}