Project

General

Profile

Download (553 Bytes) Statistics
| Branch: | Tag: | Revision:
acfbc458 Marek Hulan
$(document).ready(function () {
$('#filter_resource_type').change(function () {
$.ajax({
url: $(this).data('url'),
data: {
resource_type: $('#filter_resource_type').val()
},
dataType: "script"
});
});

$('#filter_unlimited').change(function () {
$('#search').prop('disabled', $(this).prop('checked'));
});
82b4749e Marek Hulan
$('li a[href="#organizations"]').toggle($('#filter_resource_type').data('allow-organizations'));
$('li a[href="#locations"]').toggle($('#filter_resource_type').data('allow-locations'));
acfbc458 Marek Hulan
});