IIFE for reviewController to make merging easier.

This commit is contained in:
Brendon Duncan 2018-09-21 12:31:55 -07:00
commit c0912c5f17

View file

@ -1,5 +1,7 @@
'use strict'; 'use strict';
(function () {
angular angular
.module('copayApp.controllers') .module('copayApp.controllers')
.controller('reviewController', reviewController); .controller('reviewController', reviewController);
@ -952,5 +954,5 @@ function reviewController(addressbookService, bitcoinCashJsService, bitcore, bit
}); });
}); });
} }
} }
})();