closes #472, need to wait for transitions to end before ajaxifying or the overlays stays there (drunk)

This commit is contained in:
Baris Soner Usakli
2013-10-31 13:30:34 -04:00
parent 9b7c9e4a81
commit ed42012058

View File

@@ -189,8 +189,10 @@ define(function() {
} }
}, function(err) { }, function(err) {
if (!err) { if (!err) {
detailsModal.modal('hide'); detailsModal.on('hidden.bs.modal', function() {
ajaxify.go('admin/groups'); ajaxify.go('admin/groups');
});
detailsModal.modal('hide');
} }
}); });
}); });