Browse Source

Don't apply iCheck plugin to checkboxes with 'simple' css class.

pull/61/head
Tim Morgan 11 years ago
parent
commit
d8ac55d6a3
  1. 2
      js/AdminLTE/app.js

2
js/AdminLTE/app.js

@ -129,7 +129,7 @@ $(function() {
* iCheck plugin in. * iCheck plugin in.
* You can find the documentation at http://fronteed.com/iCheck/ * 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', checkboxClass: 'icheckbox_minimal',
radioClass: 'iradio_minimal' radioClass: 'iradio_minimal'
}); });

Loading…
Cancel
Save