diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2013-08-11 22:03:39 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2013-08-11 22:03:39 +0200 |
commit | 13c57b69de3825cb7755f548a417dbd993f90bfb (patch) | |
tree | efcd23ee3d739372aad190ced846c5e9e7eff2e0 /pyload/web/app/scripts/models | |
parent | improved account list (diff) | |
download | pyload-13c57b69de3825cb7755f548a417dbd993f90bfb.tar.xz |
fixed account removing
Diffstat (limited to 'pyload/web/app/scripts/models')
-rw-r--r-- | pyload/web/app/scripts/models/Account.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyload/web/app/scripts/models/Account.js b/pyload/web/app/scripts/models/Account.js index e2cc4f9ec..d98d3374f 100644 --- a/pyload/web/app/scripts/models/Account.js +++ b/pyload/web/app/scripts/models/Account.js @@ -51,7 +51,7 @@ define(['jquery', 'backbone', 'underscore', 'app', 'utils/apitypes'], function($ var options = App.apiRequest('updateAccountInfo', {account: this.toJSON()}, { success: function() { _.delay(function() { - App.vent.trigger('accounts:updated'); + App.vent.trigger('account:updated'); }, 1000); } }); |