swipe to change pages and swipe to show or hide sidebar menu

This commit is contained in:
Gustavo Maximiliano Cortez 2014-12-08 05:34:59 -03:00
commit aad053daec
3 changed files with 62 additions and 1 deletions

12
js/controllers/index.js Normal file
View file

@ -0,0 +1,12 @@
'use strict';
angular.module('copayApp.controllers').controller('IndexController', function($scope, go) {
$scope.init = function() {
};
$scope.swipe = function(invert) {
go.swipe(invert);
};
});