Merge pull request #1047 from itflow-org/share-modal-anyone

Guest Link Sharing
This commit is contained in:
Johnny
2024-09-11 18:05:45 -04:00
committed by GitHub
3 changed files with 11 additions and 7 deletions

View File

@@ -12,6 +12,14 @@ function populateShareModal(client_id, item_type, item_ref_id) {
// Show form and generate button
document.getElementById("div_share_link_form").hidden = false;
document.getElementById("div_share_link_generate").hidden = false;
$(document).ready(function() {
$('#share_email').select2({
tags: true,
placeholder: 'Select or type a value',
allowClear: true
});
});
}
function generateShareLink() {