Selaa lähdekoodia

Add missing semicolon

Missing semicolon was causing an issue in the minified version
Nathan Smith 11 vuotta sitten
vanhempi
commit
d995effa2d
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1 1
      static/js/bootstrap-switch.js

+ 1 - 1
static/js/bootstrap-switch.js

@@ -332,7 +332,7 @@
         var $label = $element.find("label");
         $.each(['switch-mini', 'switch-small', 'switch-large'], function (i, el) {
           if (el !== value) {
-            $switchLeft.removeClass(el)
+            $switchLeft.removeClass(el);
             $switchRight.removeClass(el);
             $label.removeClass(el);
           } else {