Skip to content

Commit

Permalink
fix(transition): reverted missing invoke method error
Browse files Browse the repository at this point in the history
The invoke method in transition module works slightly different than in all other modules as a non existend string behavior is used as animationname instead. This PR removes the console message when an animation name is not found as invoked behavior string.
  • Loading branch information
lubber-de authored Jan 22, 2023
1 parent f8f26a1 commit ed8c5e9
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/definitions/modules/transition.js
Original file line number Diff line number Diff line change
Expand Up @@ -960,8 +960,6 @@

return false;
} else {
module.error(error.method, query);

return false;
}
});
Expand Down Expand Up @@ -1077,7 +1075,6 @@
// possible errors
error: {
noAnimation: 'Element is no longer attached to DOM. Unable to animate. Use silent setting to suppress this warning in production.',
method: 'The method you called is not defined',
support: 'This browser does not support CSS animations',
},

Expand Down

0 comments on commit ed8c5e9

Please sign in to comment.