Fix connection button status while connection is being established, fixes #134

This commit is contained in:
Dan Sosedoff
2016-02-20 21:03:35 -06:00
parent 5ae5907d11
commit 5ecb66a4ef
3 changed files with 6 additions and 6 deletions

View File

@@ -975,7 +975,7 @@ $(document).ready(function() {
$("#connection_form").on("submit", function(e) {
e.preventDefault();
var button = $(this).children("button");
var button = $(this).find("button.open-connection");
var params = {
url: getConnectionString()
};