blob: 8858ee66ee70d26c65da59b19364f6951d324f87 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
(function(){
function disable_form(disable) {
$('#post_category_details_form').toggle(!disable);
$('#private_form').toggle(!disable);
}
function check_rights_of_way() {
if (OpenLayers.Util.indexOf(fixmystreet.bodies, 'Oxfordshire County Council') > -1 && $('#form_category').val() == 'Countryside Paths / Public Rights of Way (usually not tarmac)') {
$('#category_meta').html('<p class="category-message">Please report problems with rights of way using <a href="https://publicrightsofway.oxfordshire.gov.uk/web/standardmap.aspx">this page</a>.</p>');
disable_form(true);
} else {
$('#category_meta').html('');
disable_form(false);
}
}
$(fixmystreet).on('report_new:category_change', check_rights_of_way);
})();
|