Listen to checkbox changes as well

This commit is contained in:
Michael Gapczynski 2013-01-02 12:13:59 -05:00
parent d65cb7ae09
commit db90f2c296
1 changed files with 4 additions and 0 deletions

View File

@ -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());
});