diff --git a/README.md b/README.md index bcde0c904..055f1cdd6 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/app/components/network/networkController.js b/app/components/network/networkController.js index 4124477f5..8d55ce70c 100644 --- a/app/components/network/networkController.js +++ b/app/components/network/networkController.js @@ -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"); }); };