blob: daa28f5ba036b3fcfd91b381735eb1da6e70d247 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
'use strict';
/**
* @ngdoc overview
* @name ngMobile
* @description
* Touch events and other mobile helpers.
* Based on jQuery Mobile touch event handling (jquerymobile.com)
*/
// define ngMobile module
var ngMobile = angular.module('ngMobile', []);
|