Skip to content

Commit

Permalink
MAGETWO-54362: [Github] Stop screen loader on payment error #3749
Browse files Browse the repository at this point in the history
  • Loading branch information
irenelagno committed Aug 9, 2016
1 parent 6ee8e16 commit 2bf419c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ define(
).fail(
function (response) {
errorProcessor.process(response, messageContainer);
fullScreenLoader.stopLoader();
}
).always(
function () {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,12 @@ define(
).fail(
function (response) {
errorProcessor.process(response, messageContainer);
}
).always(
function () {
fullScreenLoader.stopLoader();
}
);
)
};
}
);

0 comments on commit 2bf419c

Please sign in to comment.