Fixed problems with boot2docker integration, cleaned up tests.

This commit is contained in:
Jeffrey Morgan
2015-02-02 12:05:56 -05:00
parent c7d3bffc7f
commit 21f1ec1cca
11 changed files with 56 additions and 49 deletions

View File

@@ -83,6 +83,9 @@ var ContainerModal = React.createClass({
},
handleClick: function (name, event) {
ContainerStore.create(name, 'latest', function (err, containerName) {
if (err) {
throw err;
}
this.props.onRequestHide();
}.bind(this));
},