No longer maintained, would you be our new maintainer? Let us know at [email protected].
A angular module to add directives for touch devices.
Version: 1.0.1
Author: Mark Topper [Facebook] [Github] [Twitter]
Website: ulties.com
Email: [email protected]
Install using bower:
bower install ngtouchmove --save
Install using npm:
npm install ngtouchmove --save
Go to NPM page for this package.
Load the file to you HTML header:
<script type="text/javascript" src="path/to/components/ngtouchmove/build/ngTouchmove.min.js"></script>
You must include the ngTouchmove dependency on your angular module:
var app = angular.module("demoapp", ["ngTouchmove"]);
Then in your controller:
$scope.onTouchmove = function() {
console.log('touchmove event called');
console.log('Event', $scope.event);
}
Then in your HTML:
<div ng-touchmove="onTouchmove()"></div>
This will trigger whenever a touch device is touched and moving.
Get the whole ngTouch package.
The following is a list of libraries that extend ngTouchmove:
- None yet
Contact me at [email protected] to get yours added.
The following is a list of libraries that requires by ngTouchmove:
- Angular: HTML enhanced for web apps
The following is a list of alternatives for ngTouchmove:
- ngTouch: A angular module to add directives for touch devices.
From the project directory, tests can be ran using gulp test
Thank you for considering contributing! The contribution guide can be found in the contributions.md.
If you discover a security vulnerability within ngTouch, please send an e-mail to Mark Topper at [email protected]. All security vulnerabilities will be promptly addressed.
Released under the MIT License - see license.txt
for details.