diff options
author | Roeland Jago Douma <rullzer@owncloud.com> | 2016-02-12 14:01:15 +0100 |
---|---|---|
committer | Roeland Jago Douma <rullzer@owncloud.com> | 2016-02-12 14:01:15 +0100 |
commit | 51b55d53206ec8731611e6a36bf8d7e3317a451a (patch) | |
tree | e3996080cacb4a9b16fc86451bae2ee64ce8f270 /core/js/shareitemmodel.js | |
parent | f8607ac1327f3254f6f4fe86c8418f1b3d447730 (diff) | |
download | nextcloud-server-51b55d53206ec8731611e6a36bf8d7e3317a451a.tar.gz nextcloud-server-51b55d53206ec8731611e6a36bf8d7e3317a451a.zip |
Provide proper feedback when creating a share in the webUI
Fixes #22304
Creating a share is not instant (especially not for federated shares) so
we should show that something is happening in the webUI properly.
Diffstat (limited to 'core/js/shareitemmodel.js')
-rw-r--r-- | core/js/shareitemmodel.js | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/core/js/shareitemmodel.js b/core/js/shareitemmodel.js index a28bcac91cb..292230d26d5 100644 --- a/core/js/shareitemmodel.js +++ b/core/js/shareitemmodel.js @@ -183,11 +183,9 @@ data: attributes, dataType: 'json' }).done(function() { - self.fetch({ - success: function() { - if (_.isFunction(options.success)) { - options.success(self); - } + self.fetch().done(function() { + if (_.isFunction(options.success)) { + options.success(self); } }); }).fail(function(xhr) { |