Browse Source

Merge pull request #61 from seven1m/master

Don't apply iCheck plugin to checkboxes with 'simple' css class.
Abdullah Almsaeed 10 years ago
parent
commit
5ad2be7757
1 changed files with 1 additions and 1 deletions
  1. 1 1
      js/AdminLTE/app.js

+ 1 - 1
js/AdminLTE/app.js

@@ -129,7 +129,7 @@ $(function() {
      * iCheck plugin in.
      * You can find the documentation at http://fronteed.com/iCheck/
      */
-    $("input[type='checkbox'], input[type='radio']").iCheck({
+    $("input[type='checkbox']:not(.simple), input[type='radio']:not(.simple)").iCheck({
         checkboxClass: 'icheckbox_minimal',
         radioClass: 'iradio_minimal'
     });