فهرست منبع

Add missing semicolon

In minified js throws an error - Uncaught SyntaxError: Unexpected token (Chrome for Mac Version 28.0.1500.95)
Vadim 11 سال پیش
والد
کامیت
574af808a8
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  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 {