Files
coriolis/app/js/controllers/controller-ship.js
Colin McLeod 1097ca5a42 Initial commit
2015-04-16 18:29:29 -07:00

11 lines
395 B
JavaScript

angular.module('app')
.controller('ShipController', ['$scope', '$routeParams','ShipFactory', 'components', function ($scope, $p, ShipFactory, Components) {
$scope.shipId = $p.ship;
$scope.ship = ShipFactory($scope.shipId, DB.ships[$scope.shipId]);
$scope.availCS = Components.forShip($scope.shipId);
// for debugging
window.ship = $scope.ship;
window.availcs = $scope.availCS;
}]);