mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2025-07-09 18:08:49 +00:00
[various] Rename group to circle
- Drop support for group_text - Add support for circle_text
This commit is contained in:
parent
941b8c5a14
commit
aa0f74832a
45 changed files with 793 additions and 40 deletions
|
@ -35,18 +35,18 @@
|
|||
let albumElm = document.getElementById('photos-upload-album-select');
|
||||
|
||||
let contact_allow = document.querySelector('[name="contact_allow"]:not(:disabled)');
|
||||
let group_allow = document.querySelector('[name="group_allow"]:not(:disabled)');
|
||||
let contact_deny = document.querySelector('[name="contact_deny"]:not(:disabled)');
|
||||
let group_deny = document.querySelector('[name="group_deny"]:not(:disabled)');
|
||||
let circle_allow = document.querySelector('[name="circle_allow"]:not(:disabled)');
|
||||
let contact_deny = document.querySelector('[name="contact_deny"]:not(:disabled)');
|
||||
let circle_deny = document.querySelector('[name="circle_deny"]:not(:disabled)');
|
||||
|
||||
uploader.setParams({
|
||||
newalbum : newalbumElm ? newalbumElm.value : '',
|
||||
album : albumElm ? albumElm.value : '',
|
||||
not_visible : document.getElementById('photos-upload-noshare').checked,
|
||||
contact_allow : contact_allow ? contact_allow.value : '',
|
||||
group_allow : group_allow ? group_allow.value : '',
|
||||
circle_allow : circle_allow ? circle_allow.value : '',
|
||||
contact_deny : contact_deny ? contact_deny.value : '',
|
||||
group_deny : group_deny ? group_deny.value : '',
|
||||
circle_deny : circle_deny ? circle_deny.value : '',
|
||||
});
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue