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
|
|
|
|
|
*
|
2013-10-17 02:48:32 +00:00
|
|
|
* The `ngTouch` module provides touch events and other helpers for touch-enabled devices.
|
2013-10-23 21:44:37 +00:00
|
|
|
* The implementation is based on jQuery Mobile touch event handling
|
|
|
|
|
* ([jquerymobile.com](http://jquerymobile.com/)).
|
2013-08-22 19:32:42 +00:00
|
|
|
*
|
|
|
|
|
* {@installModule touch}
|
|
|
|
|
*
|
|
|
|
|
* See {@link ngTouch.$swipe `$swipe`} for usage.
|
2013-10-17 02:48:32 +00:00
|
|
|
*
|
|
|
|
|
* <div doc-module-components="ngTouch"></div>
|
|
|
|
|
*
|
2013-02-08 18:39:23 +00:00
|
|
|
*/
|
|
|
|
|
|
2013-08-09 17:02:48 +00:00
|
|
|
// define ngTouch module
|
2013-10-22 21:41:21 +00:00
|
|
|
/* global -ngTouch */
|
2013-08-09 17:02:48 +00:00
|
|
|
var ngTouch = angular.module('ngTouch', []);
|
2013-02-08 18:39:23 +00:00
|
|
|
|