浏览代码

Update bootstrapSwitch.js

updated "in  if ($this.closest('.switch').is('.deactivate'))" to be "in  if ($this.closest('.has-switch').is('.deactivate'))".
because if anyone initialized the plugin to an element that doesn't have switch class and the inner checkbox is disabled, it will be dimmed but still working because it won't find the .switch class in closest selector.
Alaa Ali 12 年之前
父节点
当前提交
669a4005a8
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      static/js/bootstrapSwitch.js

+ 1 - 1
static/js/bootstrapSwitch.js

@@ -139,7 +139,7 @@
 
               $this.closest('div').removeClass('switch-animate');
 
-              if ($this.closest('.switch').is('.deactivate'))
+              if ($this.closest('.has-switch').is('.deactivate'))
                 $this.unbind('click');
               else {
                 $this.on('mousemove touchmove', function (e) {