diff options
| author | Braden Shepherdson | 2013-03-08 09:38:29 -0500 | 
|---|---|---|
| committer | Igor Minar | 2013-04-11 13:01:24 -0700 | 
| commit | 5e0f876c39099adb6a0300c429b8df1f6b544846 (patch) | |
| tree | 3c5fc1b7b55f466e232e4b3a2c0d81e8bc40313c /Gruntfile.js | |
| parent | f24cf4b58f3c2e56df188738356b21e6c898ff0c (diff) | |
| download | angular.js-5e0f876c39099adb6a0300c429b8df1f6b544846.tar.bz2 | |
feat(ngSwipe): Add ngSwipeRight/Left directives to ngMobile
These directives fire an event handler on a touch-and-drag or
click-and-drag to the left or right. Includes unit tests and docs
update. Manually tested on Chrome 26, IE8, Android Chrome and iOS
Safari.
Diffstat (limited to 'Gruntfile.js')
| -rw-r--r-- | Gruntfile.js | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/Gruntfile.js b/Gruntfile.js index c318a2a6..ac7e47b6 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -89,7 +89,8 @@ module.exports = function(grunt) {          dest: 'build/angular-mobile.js',          src: util.wrap([            'src/ngMobile/mobile.js', -          'src/ngMobile/directive/ngClick.js' +          'src/ngMobile/directive/ngClick.js', +          'src/ngMobile/directive/ngSwipe.js'              ], 'module')        },        mocks: { | 
