From d8ac55d6a380573e6edfc47d2e76c9eba783bb34 Mon Sep 17 00:00:00 2001 From: Tim Morgan Date: Sun, 1 Jun 2014 23:52:00 -0500 Subject: [PATCH] Don't apply iCheck plugin to checkboxes with 'simple' css class. --- js/AdminLTE/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/AdminLTE/app.js b/js/AdminLTE/app.js index 85374f86..d926a2ff 100644 --- a/js/AdminLTE/app.js +++ b/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' }); -- GitLab