diff --git a/static/js/app.js b/static/js/app.js index b20117e6a..207ef56f0 100644 --- a/static/js/app.js +++ b/static/js/app.js @@ -728,7 +728,7 @@ quayApp.directive('namespaceSelector', function () { 'namespace': '=namespace', 'requireCreate': '=requireCreate' }, - controller: function($scope, $element, $cookieStore) { + controller: function($scope, $element, $routeParams, $cookieStore) { $scope.namespaces = {}; $scope.initialize = function(user) { @@ -740,7 +740,7 @@ quayApp.directive('namespaceSelector', function () { } } - var initialNamespace = $cookieStore.get('quay.currentnamespace') || $scope.user.username; + var initialNamespace = $routeParams['namespace'] || $cookieStore.get('quay.currentnamespace') || $scope.user.username; $scope.namespaces = namespaces; $scope.setNamespace($scope.namespaces[initialNamespace]); }; diff --git a/static/js/graphing.js b/static/js/graphing.js index 5058c32eb..290c9f2ad 100644 --- a/static/js/graphing.js +++ b/static/js/graphing.js @@ -566,7 +566,6 @@ ImageHistoryTree.prototype.update_ = function(source) { // Translate the foreign object so the tags are under the ID. fo.attr("transform", function(d, i) { - bbox = this.getBBox() return "translate(" + [-130, 0 ] + ")"; });