From ca280673d195b5ca3b3e37511a3b3c64d4003a91 Mon Sep 17 00:00:00 2001 From: Alex Shearn Date: Mon, 15 Jun 2015 22:09:18 +0100 Subject: [PATCH] Fixing indentation --- app/js/controllers/controller-outfit.js | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/app/js/controllers/controller-outfit.js b/app/js/controllers/controller-outfit.js index 782a07a2..2bfc05f9 100755 --- a/app/js/controllers/controller-outfit.js +++ b/app/js/controllers/controller-outfit.js @@ -120,16 +120,16 @@ angular.module('app').controller('OutfitController', ['$window', '$rootScope', ' * Strip ship to D-class and no other components. */ $scope.stripBuild = function() { - angular.forEach(ship.common, function(slot,i) { - id = slot.maxClass+'D'; - ship.use(slot, id, Components.common(ship.common.indexOf(slot), id)); - }); - angular.forEach(ship.hardpoints, function(slot,i) { - ship.use(slot, null, null); - }); - angular.forEach(ship.internal, function(slot,i) { - ship.use(slot, null, null); - }); + angular.forEach(ship.common, function(slot,i) { + id = slot.maxClass+'D'; + ship.use(slot, id, Components.common(ship.common.indexOf(slot), id)); + }); + angular.forEach(ship.hardpoints, function(slot,i) { + ship.use(slot, null, null); + }); + angular.forEach(ship.internal, function(slot,i) { + ship.use(slot, null, null); + }); }; /**