1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-27 09:19:39 +02:00

Merge pull request #1 from crosbymichael/master

Rebase against master
This commit is contained in:
Nazar Mokrynskyi 2014-07-29 23:40:24 +02:00
commit 98048dbb14
9 changed files with 51 additions and 46 deletions

View file

@ -188,7 +188,7 @@ function ContainerController($scope, $routeParams, $location, Container, Message
};
$scope.hasContent = function(data) {
return data !== null && data !== undefined && data.length > 1;
return data !== null && data !== undefined;
};
$scope.getChanges = function() {
@ -437,7 +437,7 @@ function StartContainerController($scope, $routeParams, $location, Container, Me
}
function BuilderController($scope, Dockerfile, Messages) {
$scope.template = '/partials/builder.html';
$scope.template = 'partials/builder.html';
}
function failedRequestHandler(e, Messages) {