Comment 7 for bug 1737800

Revision history for this message
Bill Erickson (berick) wrote :

Cesar, could you please post another commit with the following changes:

1. Add your sign-off

2. Change
    $q.all(promises).then(refresh_page());
to
    $q.all(promises).then(refresh_page);

This way the refresh_page function is not called until after the promises are complete. Alternatively, wrap it up like .then(function() { refresh_page() });