From 94ec84e7b9c89358dc00e4039009af9e287bbd05 Mon Sep 17 00:00:00 2001 From: Brian Ford Date: Fri, 9 Aug 2013 10:02:48 -0700 Subject: chore(ngMobile): rename module ngTouch and file to angular-touch.js BREAKING CHANGE: since all the code in the ngMobile module is touch related, we are renaming the module to ngTouch. To migrate, please replace all references to "ngMobile" with "ngTouch" and "angular-mobile.js" to "angular-touch.js". Closes #3526 --- Gruntfile.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'Gruntfile.js') diff --git a/Gruntfile.js b/Gruntfile.js index 64163525..b9aba806 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -124,13 +124,13 @@ module.exports = function(grunt) { dest: 'build/angular-loader.js', src: util.wrap(['src/loader.js'], 'loader') }, - mobile: { - dest: 'build/angular-mobile.js', + touch: { + dest: 'build/angular-touch.js', src: util.wrap([ - 'src/ngMobile/mobile.js', - 'src/ngMobile/swipe.js', - 'src/ngMobile/directive/ngClick.js', - 'src/ngMobile/directive/ngSwipe.js' + 'src/ngTouch/touch.js', + 'src/ngTouch/swipe.js', + 'src/ngTouch/directive/ngClick.js', + 'src/ngTouch/directive/ngSwipe.js' ], 'module') }, mocks: { @@ -174,7 +174,7 @@ module.exports = function(grunt) { animate: 'build/angular-animate.js', cookies: 'build/angular-cookies.js', loader: 'build/angular-loader.js', - mobile: 'build/angular-mobile.js', + touch: 'build/angular-touch.js', resource: 'build/angular-resource.js', route: 'build/angular-route.js', sanitize: 'build/angular-sanitize.js' -- cgit v1.2.3