|
Lines 726-731
Link Here
|
| 726 |
prepSelections(); |
726 |
prepSelections(); |
| 727 |
$('[data-bs-toggle="tooltip"]').tooltip(); |
727 |
$('[data-bs-toggle="tooltip"]').tooltip(); |
| 728 |
}); |
728 |
}); |
|
|
729 |
|
| 730 |
let shareable_params = params.map(p => { |
| 731 |
if(p.name === 'format') { |
| 732 |
return { ...p, value: 'shareable' }; |
| 733 |
} |
| 734 |
return p; |
| 735 |
}); |
| 736 |
let shareable_url = window.location.origin + window.location.pathname + '?' + $.param(shareable_params); |
| 737 |
history.replaceState(null, "", shareable_url); |
| 729 |
} |
738 |
} |
| 730 |
|
739 |
|
| 731 |
$(document).ready(function () { |
740 |
$(document).ready(function () { |
| 732 |
- |
|
|