Bugfix change event not triggering

This commit is contained in:
Vivek Santayana 2021-12-08 13:25:50 +00:00
parent 27706572ed
commit ede71f7d82

View File

@ -16,7 +16,7 @@ $("input[name='bg-select']").change(function(){
}); });
$(".bg-select-area").click(function(event){ $(".bg-select-area").click(function(event){
$(this).find("input[name='bg-select']").prop("checked", true) $(this).find("input[name='bg-select']").prop("checked", true).change();
}); });
$("#btn-toggle-navigator").click(function(event){ $("#btn-toggle-navigator").click(function(event){