Skip to content

Commit ed8c5e9

Browse files
authored
fix(transition): reverted missing invoke method error
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.
1 parent f8f26a1 commit ed8c5e9

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/definitions/modules/transition.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -960,8 +960,6 @@
960960

961961
return false;
962962
} else {
963-
module.error(error.method, query);
964-
965963
return false;
966964
}
967965
});
@@ -1077,7 +1075,6 @@
10771075
// possible errors
10781076
error: {
10791077
noAnimation: 'Element is no longer attached to DOM. Unable to animate. Use silent setting to suppress this warning in production.',
1080-
method: 'The method you called is not defined',
10811078
support: 'This browser does not support CSS animations',
10821079
},
10831080

0 commit comments

Comments
 (0)