mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-04-29 10:10:19 +00:00
- show share also if a device is not available - use folder Freedombox/shares/open_share for sharing on every disk - backup and restore share definitions - fix: do not hide status block - fix: add nmbd to the managed services Signed-off-by: Veiko Aasa <veiko17@disroot.org> Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
8 lines
188 B
JavaScript
8 lines
188 B
JavaScript
const share_checkbox = $(".shareform > input[type='checkbox']");
|
|
|
|
share_checkbox.change(function(event) {
|
|
this.disabled=true;
|
|
this.style.cursor='wait';
|
|
this.form.submit();
|
|
});
|