Wallet/src/js/controllers/modals/search.js

10 lines
224 B
JavaScript
Raw Normal View History

'use strict';
angular.module('copayApp.controllers').controller('searchController', function($scope) {
var self = $scope.self;
$scope.search = '';
$scope.cancel = function() {
$scope.searchModal.hide();
};
});