mirror of
https://github.com/nextcloud/server.git
synced 2026-06-08 16:26:59 -04:00
Listen to checkbox changes as well
This commit is contained in:
parent
d65cb7ae09
commit
db90f2c296
1 changed files with 4 additions and 0 deletions
|
|
@ -239,6 +239,10 @@ $(document).ready(function() {
|
|||
}
|
||||
});
|
||||
|
||||
$('#externalStorage td input:checkbox').live('change', function() {
|
||||
OC.MountConfig.saveStorage($(this).parent().parent().parent());
|
||||
});
|
||||
|
||||
$('.applicable .chzn-select').live('change', function() {
|
||||
OC.MountConfig.saveStorage($(this).parent().parent());
|
||||
});
|
||||
|
|
|
|||
Loading…
Reference in a new issue