cloudflare UI page not working
Posted: 21 Oct 2017, 12:05
Hey chirpy,
It looks like there is a javascript error on the cloudflare UI page on CSF v11.01 which prevents the UI from working properly. In Firefox and chrome I see this in the browser console on the cloudflare UI page:
Once javascript breaks the code below doesn't get a chance to re-enable all buttons even though a domain is selected
I hope this helps!
It looks like there is a javascript error on the cloudflare UI page on CSF v11.01 which prevents the UI from working properly. In Firefox and chrome I see this in the browser console on the cloudflare UI page:
Code: Select all
TypeError: $(...).chosen is not a function[Learn More] yMq3wnv0pfUc5kjFZIOxejZkGj:44:3
Code: Select all
$('#domains').on('keyup change',function() {
if ($('#domains').val() == null) {
$('#cflistbtn,#cftempdenybtn,#cfaddbtn,#cfremovebtn').prop('disabled', true);
} else {
$('#cflistbtn,#cftempdenybtn,#cfaddbtn,#cfremovebtn').prop('disabled', false);
}
});
I hope this helps!