mirror of
https://github.com/EDCD/coriolis.git
synced 2025-12-11 00:33:03 +00:00
Fixing indentation
This commit is contained in:
@@ -120,16 +120,16 @@ angular.module('app').controller('OutfitController', ['$window', '$rootScope', '
|
|||||||
* Strip ship to D-class and no other components.
|
* Strip ship to D-class and no other components.
|
||||||
*/
|
*/
|
||||||
$scope.stripBuild = function() {
|
$scope.stripBuild = function() {
|
||||||
angular.forEach(ship.common, function(slot,i) {
|
angular.forEach(ship.common, function(slot,i) {
|
||||||
id = slot.maxClass+'D';
|
id = slot.maxClass+'D';
|
||||||
ship.use(slot, id, Components.common(ship.common.indexOf(slot), id));
|
ship.use(slot, id, Components.common(ship.common.indexOf(slot), id));
|
||||||
});
|
});
|
||||||
angular.forEach(ship.hardpoints, function(slot,i) {
|
angular.forEach(ship.hardpoints, function(slot,i) {
|
||||||
ship.use(slot, null, null);
|
ship.use(slot, null, null);
|
||||||
});
|
});
|
||||||
angular.forEach(ship.internal, function(slot,i) {
|
angular.forEach(ship.internal, function(slot,i) {
|
||||||
ship.use(slot, null, null);
|
ship.use(slot, null, null);
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
Reference in New Issue
Block a user