An angular module to add directives for touch devices
npm install ngtouch
A angular module to add directives for touch devices.















* Info
* Installing/Loading
* Usage
* ng-touchstart
* ng-touchend
* ng-touchmove
* Links
* Tests
* Official Documentation
* Contributing
* Security Vulnerabilities
* License
Version: 1.0.1
Author: Mark Topper [Facebook] [Github] [Twitter]
Website: www.webman.io
Email: mark@webman.io
Install using bower:
```
bower install ngtouch --save
Load the file to you HTML header:
``
You must include the ngTouch dependency on your angular module:
````
var app = angular.module("demoapp", ["ngTouch"]);``
Then in your HTML you can use:``
#### ng-touchstart
Once a touch device start touching, this event will be called.
Here is a usage example:
> yourController.js
``
$scope.onTouchstart = function($event) {
console.log('touchstart event called');
}
> yourView.html
``
__Get ngTouchstart standalone.__
#### ng-touchend
Once a touch device end touching, this event will be called.
Here is a usage example:
> yourController.js
``
$scope.onTouchend = function($event) {
console.log('touchend event called');
}
> yourView.html
``
__Get ngTouchend standalone.__
#### ng-touchmove
Whenever a touch device is touched and moving.
Here is a usage example:
> yourController.js
``
$scope.onTouchmove = function($event) {
console.log('touchmove event called');
}
> yourView.html
``
__Get ngTouchmove standalone.__
The following is a list of libraries that extend ngTouch:
* None yet
Contact me at mark@webman.io to get yours added.
The following is a list of libraries that requires by ngTouch:
* Angular:
HTML enhanced for web apps
The following is a list of alternatives for ngTouch:
* ngTouchmove:
A angular module to add directive ng-touchmove.
* ngTouchstart:
A angular module to add directive ng-touchstart.
* ngTouchend:
A angular module to add directive ng-touchend.
From the project directory, tests can be ran using gulp test
Documentation for this library can be found on the website.
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 mark@webman.io. All security vulnerabilities will be promptly addressed.
Released under the MIT License - see license.txt` for details.