copay/js/controllers/index.js

13 lines
211 B
JavaScript
Raw Normal View History

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