mirror of https://github.com/ColorlibHQ/AdminLTE
Merge pull request #61 from seven1m/master
Don't apply iCheck plugin to checkboxes with 'simple' css class.pull/67/merge
commit
5ad2be7757
|
@ -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…
Reference in New Issue