2013-02-08 18:39:23 +00:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @ngdoc overview
|
2013-08-09 17:02:48 +00:00
|
|
|
* @name ngTouch
|
2013-02-08 18:39:23 +00:00
|
|
|
* @description
|
2013-08-22 19:32:42 +00:00
|
|
|
*
|
|
|
|
|
* # ngTouch
|
|
|
|
|
*
|
|
|
|
|
* `ngTouch` is the name of the optional Angular module that provides touch events and other
|
|
|
|
|
* helpers for touch-enabled devices.
|
|
|
|
|
* The implementation is based on jQuery Mobile touch event handling
|
|
|
|
|
* ([jquerymobile.com](http://jquerymobile.com/))
|
|
|
|
|
*
|
|
|
|
|
* {@installModule touch}
|
|
|
|
|
*
|
|
|
|
|
* See {@link ngTouch.$swipe `$swipe`} for usage.
|
2013-02-08 18:39:23 +00:00
|
|
|
*/
|
|
|
|
|
|
2013-08-09 17:02:48 +00:00
|
|
|
// define ngTouch module
|
|
|
|
|
var ngTouch = angular.module('ngTouch', []);
|
2013-02-08 18:39:23 +00:00
|
|
|
|