Skip to content

Commit

Permalink
update to new gesture library
Browse files Browse the repository at this point in the history
  • Loading branch information
stakach committed Oct 8, 2013
1 parent 18e3aea commit 51da97f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "ngRouteNames",
"version": "1.0.2",
"version": "1.0.3",
"main": "./ngRouteNames.js",
"dependencies": {
"angular": "~1.2.0",
"angular-gesture": "~1.1.8"
"angular-gesture": "~1.2.0"
}
}
2 changes: 1 addition & 1 deletion directive/goto.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
'use strict';

angular.module('ngRouteNames')
.directive('goto', ['$route', '$location', '$mobileClick', '$parse', function ($route, $location, $mobile, $parse) {
.directive('goto', ['$route', '$location', '$gestureClick', '$parse', function ($route, $location, $mobile, $parse) {
return {
scope: false,
restrict: 'A',
Expand Down
2 changes: 1 addition & 1 deletion ngRouteNames.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
(function (angular) {
'use strict';

angular.module('ngRouteNames', ['ngMobile'])
angular.module('ngRouteNames', ['ngGesture'])

.provider('$routeNames', ['$routeProvider', function ($routeProvider) {
var namedRoutes = {},
Expand Down

0 comments on commit 51da97f

Please sign in to comment.