blob: c8fd8843cf253217f634d6f9174652490da18cc6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
'use strict';
/**
* @ngdoc overview
* @name ngMobile
* @description
*/
/*
* Touch events and other mobile helpers by Braden Shepherdson (braden.shepherdson@gmail.com)
* Based on jQuery Mobile touch event handling (jquerymobile.com)
*/
// define ngSanitize module and register $sanitize service
var ngMobile = angular.module('ngMobile', []);
|