Skip to content

Instantly share code, notes, and snippets.

View joaodallarosa's full-sized avatar

João Dalla Rosa joaodallarosa

  • Valtech
  • Paris, France
View GitHub Profile
@BobNisco
BobNisco / controller.js
Last active February 27, 2023 15:43
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');
}