homogenized modals - add addressbook modal

This commit is contained in:
Javier 2016-05-26 15:02:00 -03:00
commit df2811eeba
13 changed files with 491 additions and 489 deletions

View file

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