From 4f790688c19183347a92bdcdcf76d0a0731c2892 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Xose=20P=C3=A9rez?= Date: Fri, 9 Feb 2018 00:14:31 +0100 Subject: [PATCH] Fix misplaced semicolons --- code/html/custom.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/code/html/custom.js b/code/html/custom.js index b3311c46..aa4b009a 100644 --- a/code/html/custom.js +++ b/code/html/custom.js @@ -1193,17 +1193,17 @@ function hasChanged() { if (newValue !== originalValue) { if (0 === hasChanged) { ++numChanged; - if ("reconnect" === action) { ++numReconnect }; - if ("reboot" === action) { ++numReboot }; - if ("reload" === action) { ++numReload }; + if ("reconnect" === action) { ++numReconnect; } + if ("reboot" === action) { ++numReboot; } + if ("reload" === action) { ++numReload; } $(this).attr("hasChanged", 1); } } else { if (1 === hasChanged) { --numChanged; - if ("reconnect" === action) { --numReconnect }; - if ("reboot" === action) { --numReboot }; - if ("reload" === action) { --numReload }; + if ("reconnect" === action) { --numReconnect; } + if ("reboot" === action) { --numReboot; } + if ("reload" === action) { --numReload; } $(this).attr("hasChanged", 0); } }