Skip to content

Commit 60b7918

Browse files
committed
Prevent match btns from being disabled
1 parent 40ea618 commit 60b7918

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/main/webapp/admin/secure_shell.jsp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@
317317
}
318318
319319
320-
$('#match_btn').unbind().click(function () {
320+
$('#match_btn').off().click(function () {
321321
$('#match_frm').submit();
322322
});
323323
@@ -383,6 +383,7 @@
383383
$('#match_btn').text("Start");
384384
clearInterval(matchFunction)
385385
}
386+
$('#match_btn').removeAttr('disabled');
386387
}
387388
388389

0 commit comments

Comments
 (0)