2014-12-08 05:34:59 -03:00
|
|
|
'use strict';
|
|
|
|
|
|
2014-12-11 17:04:26 -03:00
|
|
|
angular.module('copayApp.controllers').controller('IndexController', function($scope, go, isCordova) {
|
2014-12-08 05:34:59 -03:00
|
|
|
$scope.init = function() {
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
$scope.swipe = function(invert) {
|
2014-12-11 20:12:43 -03:00
|
|
|
go.swipe(invert);
|
2014-12-08 05:34:59 -03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
});
|