Compare commits

...

2 Commits
1.8.2 ... 1.8.3

Author SHA1 Message Date
Colin McLeod
45b6dabcd2 Bumping version to 1.8.3 2015-10-10 11:47:46 -07:00
Colin McLeod
d476c58a9c Workaround for UI-router bug for build with slash in the name. Fixes #105 2015-10-09 18:29:04 -07:00
2 changed files with 2 additions and 2 deletions

View File

@@ -12,7 +12,7 @@ angular.module('app').controller('OutfitController', ['$window', '$rootScope', '
ship.buildWith(data.defaults); // Populate with default components
}
$scope.buildName = $p.bn;
$scope.buildName = $p.bn ? $window.decodeURIComponent($p.bn) : null;
$scope.ships = Ships;
$rootScope.title = ship.name + ($scope.buildName ? ' - ' + $scope.buildName : '');
$scope.ship = ship;

View File

@@ -1,6 +1,6 @@
{
"name": "coriolis_shipyard",
"version": "1.8.2",
"version": "1.8.3",
"repository": {
"type": "git",
"url": "https://github.com/cmmcleod/coriolis"