GUAC-932: Display the cog when parameters are not yet loaded.

This commit is contained in:
Michael Jumper
2014-12-21 20:00:38 -08:00
parent 086d9a9516
commit c3bdbcd013
3 changed files with 9 additions and 3 deletions

View File

@@ -36,7 +36,6 @@ angular.module('manage').controller('connectionEditModalController', ['$scope',
// Copy data into a new conection object in case the user doesn't want to save
$scope.connection = new Connection($scope.connection);
$scope.connection.parameters = {};
var newConnection = !$scope.connection.identifier;
@@ -60,6 +59,9 @@ angular.module('manage').controller('connectionEditModalController', ['$scope',
});
}
else {
$scope.connection.parameters = {};
}
/**
* Close the modal.