diff --git a/pages/mailbox/mailbox.html b/pages/mailbox/mailbox.html index f254a7d21..992cbab3e 100644 --- a/pages/mailbox/mailbox.html +++ b/pages/mailbox/mailbox.html @@ -760,9 +760,7 @@ - - - + @@ -770,7 +768,7 @@ $(function () { //Enable iCheck plugin for checkboxes //iCheck for checkbox and radio inputs - $('input[type="checkbox"]').iCheck({ + $('.mailbox-messages input[type="checkbox"]').iCheck({ checkboxClass: 'icheckbox_flat-blue', radioClass: 'iradio_flat-blue' }); @@ -780,10 +778,10 @@ var clicks = $(this).data('clicks'); if (clicks) { //Uncheck all checkboxes - $("input[type='checkbox']", ".mailbox-messages").iCheck("uncheck"); + $(".mailbox-messages input[type='checkbox']").iCheck("uncheck"); } else { //Check all checkboxes - $("input[type='checkbox']", ".mailbox-messages").iCheck("check"); + $(".mailbox-messages input[type='checkbox']").iCheck("check"); } $(this).data("clicks", !clicks); }); @@ -809,5 +807,8 @@ }); }); + + + \ No newline at end of file