2020-12-13 19:24:33 +03:00
|
|
|
/*
|
|
|
|
* Create a more beautiful checkbox
|
|
|
|
*/
|
|
|
|
|
|
|
|
$(function() {
|
2020-12-14 10:01:05 +03:00
|
|
|
/* hide browser default checkbox */
|
|
|
|
$("input[type=checkbox]").addClass("unloaded");
|
2020-12-13 19:24:33 +03:00
|
|
|
/* create checked checkbox */
|
2020-12-15 10:20:03 +03:00
|
|
|
$("input[type=checkbox][checked]").before("<i class=\"fas fa-check-circle checked\"></i>");
|
2020-12-13 19:24:33 +03:00
|
|
|
/* create normal checkbox */
|
2020-12-15 10:20:03 +03:00
|
|
|
$("input[type=checkbox]:not([checked])").before("<i class=\"far fa-circle\"></i>");
|
2020-12-13 19:24:33 +03:00
|
|
|
});
|