Skip to content
This repository has been archived by the owner on Sep 5, 2024. It is now read-only.

Commit

Permalink
update(interimElement): disable $log usages
Browse files Browse the repository at this point in the history
Issues have been identified with transitionEnd and ngAnimate. Disable error logging
until fixes have been committed.

Fixes #3822.
  • Loading branch information
ThomasBurleson committed Jul 20, 2015
1 parent 15e6c8c commit 976e0f4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/core/services/interimElement/interimElement.js
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ function InterimElementProvider() {
interimElement
.show()
.catch(function( reason ) {
$log.error("InterimElement.show() error: " + reason );
// $log.error("InterimElement.show() error: " + reason );
});

});
Expand Down Expand Up @@ -305,7 +305,7 @@ function InterimElementProvider() {
interim
.remove(reason || SHOW_CLOSED, false)
.catch(function( reason ) {
$log.error("InterimElement.hide() error: " + reason );
// $log.error("InterimElement.hide() error: " + reason );
});

return interim.deferred.promise;
Expand All @@ -330,7 +330,7 @@ function InterimElementProvider() {
interim
.remove(reason || SHOW_CANCELLED, true)
.catch(function( reason ) {
$log.error("InterimElement.cancel() error: " + reason );
// $log.error("InterimElement.cancel() error: " + reason );
});

return interim.deferred.promise;
Expand Down

0 comments on commit 976e0f4

Please sign in to comment.