Merge pull request #3239 from Hypolite/issue/#3194-2

Fix wrong deferred function name
This commit is contained in:
rabuzarus 2017-03-15 19:53:16 +01:00 committed by GitHub
commit b4bad92657
1 changed files with 1 additions and 1 deletions

View File

@ -181,7 +181,7 @@ function dropItem(url, elementId) {
$el.fadeTo('fast', 0.33, function () {
$.get(url).then(function() {
$el.remove();
}).error(function() {
}).fail(function() {
// @todo Show related error message
$el.show();
}).always(function() {