Add missing semicolons

This fixes warnings from LGTM:

    Avoid automated semicolon insertion (91% of all statements
    in the enclosing function have an explicit semicolon).

Signed-off-by: Stefan Weil <sw@weilnetz.de>
This commit is contained in:
Stefan Weil
2018-10-17 11:45:25 +02:00
parent aa6f3d33eb
commit 20177e06fc

View File

@@ -75,7 +75,7 @@ $(document).ready(function() {
circularCircle(canvas, 42, 0, 270, 4, usedColor);
circularCircle(canvas, 38, 0, 270, 4, assiColor);
}
circularText(canvas, 60, 42, 26, "∞")
circularText(canvas, 60, 42, 26, "∞");
} else if (!isNaN(assigned)) {
// Limited ressources but assigned
available = parseFloat(available);
@@ -90,7 +90,7 @@ $(document).ready(function() {
circularText(canvas, 60, 42, 22, usedP + "%");
} else if (available == "∞") {
circularCircle(canvas, 40, 0, 270, 8, unliColor);
circularText(canvas, 60, 42, 26, "∞")
circularText(canvas, 60, 42, 26, "∞");
} else {
// Limited ressources
available = parseFloat(available);
@@ -111,7 +111,7 @@ $(document).ready(function() {
if (usedP > 100) {
circularText(canvas, 60, 42, 22, usedP + "%", overColor);
} else {
circularText(canvas, 60, 42, 22, usedP + "%")
circularText(canvas, 60, 42, 22, usedP + "%");
}