mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-10 00:27:41 +08:00
Progress on #37
This commit is contained in:
9
js/ext/angular/src/service/ionicGesture.js
vendored
Normal file
9
js/ext/angular/src/service/ionicGesture.js
vendored
Normal file
@ -0,0 +1,9 @@
|
||||
angular.module('ionic.service.gesture', [])
|
||||
|
||||
.factory('Gesture', [function() {
|
||||
return {
|
||||
on: function(eventType, cb, element) {
|
||||
return window.ionic.onGesture(eventType, cb, element);
|
||||
}
|
||||
};
|
||||
}]);
|
||||
Reference in New Issue
Block a user