Browse Source

Add missing semicolon

In minified js throws an error - Uncaught SyntaxError: Unexpected token (Chrome for Mac Version 28.0.1500.95)
Vadim 11 years ago
parent
commit
574af808a8
1 changed files with 1 additions and 1 deletions
  1. 1 1
      static/js/bootstrap-switch.js

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

@@ -320,7 +320,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 {