# HG changeset patch # User nanaya # Date 1448364597 -32400 # Node ID c1086c23ef29d332b9c6b9b4de3c1a47d239b985 # Parent a696cc8f1ee1937b795ae54987a0f454bcc808e7 Wrong conditional diff -r a696cc8f1ee1 -r c1086c23ef29 index.html --- a/index.html Tue Nov 24 20:29:50 2015 +0900 +++ b/index.html Tue Nov 24 20:29:57 2015 +0900 @@ -100,7 +100,7 @@ var locks = {}; var lock = function(isLoading) { - if (!isLoading && locks.fixer === true && locks.bni === true) { return; } + if (!isLoading && (locks.fixer === true || locks.bni === true)) { return; } $loading.toggle(isLoading); $doButton.attr("disabled", isLoading); };