Merge branch 'docs95-docker112-support' into internal

This commit is contained in:
Anthony Lapenna
2016-09-04 12:11:09 +12:00
2 changed files with 5 additions and 4 deletions
+3 -2
View File
@@ -13,9 +13,10 @@ UI For Docker is a web interface for the Docker Remote API. The goal is to prov
## Supported Docker versions
The current Docker version support policy is the following: `N` to `N-2` included where `N` is the latest version.
The following Docker versions are supported:
At the moment, the following versions are supported: 1.9, 1.10 & 1.11.
* full support for Docker 1.10, 1.11 and 1.12
* partial support for Docker 1.9 (some features won't be available)
## Run
+2 -2
View File
@@ -19,7 +19,7 @@ function ($scope, Network, Messages, $state, $stateParams) {
Network.remove({id: $stateParams.id}, function (d) {
if (d.message) {
$('#loadingViewSpinner').hide();
Messages.send("Error", d.message);
Messages.send("Error", {}, d.message);
} else {
$('#loadingViewSpinner').hide();
Messages.send("Network removed", $stateParams.id);
@@ -27,7 +27,7 @@ function ($scope, Network, Messages, $state, $stateParams) {
}
}, function (e) {
$('#loadingViewSpinner').hide();
Messages.error("Failure", e, 'Unable to remove network');
Messages.error("Failure", e, "Unable to remove network");
});
};