mirror of
https://github.com/YunoHost-Apps/limesurvey_ynh.git
synced 2024-09-03 19:36:32 +02:00
7 lines
256 B
JavaScript
7 lines
256 B
JavaScript
$(document).ready(function() {
|
|
$('select[data-route]').on('change', function(event) {
|
|
var params = {}
|
|
params[$(this).attr('name')] = $(this).val();
|
|
window.location.href = LS.createUrl($(this).data('route'), params);
|
|
});
|
|
});
|