run js-beautify on everything

...with two spaces. Command: js-beautify -s 2 -r [filename]
This commit is contained in:
Ryan X. Charles 2014-06-24 08:36:32 -07:00
commit ea2e2d4e19
49 changed files with 859 additions and 682 deletions

View file

@ -21,7 +21,7 @@ describe("Unit: Controllers", function() {
totalCopayers: 5,
spendUnconfirmed: 1,
reconnectDelay: 100,
networkName: 'testnet'
networkName: 'testnet'
};
describe('Backup Controller', function() {
@ -117,7 +117,7 @@ describe("Unit: Controllers", function() {
describe('Send Controller', function() {
var scope, form;
beforeEach(angular.mock.module('copayApp'));
beforeEach(angular.mock.inject(function($compile, $rootScope, $controller){
beforeEach(angular.mock.inject(function($compile, $rootScope, $controller) {
scope = $rootScope.$new();
$rootScope.wallet = new FakeWallet(config);
var element = angular.element(
@ -131,7 +131,8 @@ describe("Unit: Controllers", function() {
newlabel: null,
};
$compile(element)(scope);
$controller('SendController', {$scope: scope,
$controller('SendController', {
$scope: scope,
$modal: {},
});
scope.$digest();