mirror of
https://github.com/Hopiu/angular.js.git
synced 2026-03-24 02:10:24 +00:00
25 lines
535 B
JavaScript
25 lines
535 B
JavaScript
'use strict';
|
|
|
|
/**
|
|
* @ngdoc overview
|
|
* @name ngTouch
|
|
* @description
|
|
*
|
|
* # ngTouch
|
|
*
|
|
* The `ngTouch` module 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.
|
|
*
|
|
* <div doc-module-components="ngTouch"></div>
|
|
*
|
|
*/
|
|
|
|
// define ngTouch module
|
|
/* global -ngTouch */
|
|
var ngTouch = angular.module('ngTouch', []);
|
|
|