Skip to content

Commit 6a8b377

Browse files
committed
drop unused compiler arg
1 parent 309ea3d commit 6a8b377

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/transition.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,7 @@ var transition = module.exports = function (el, stage, cb, compiler) {
4747
return applyTransitionClass(
4848
el,
4949
stage,
50-
changeState,
51-
compiler
50+
changeState
5251
)
5352
} else {
5453
changeState()
@@ -62,7 +61,7 @@ transition.codes = codes
6261
/**
6362
* Togggle a CSS class to trigger transition
6463
*/
65-
function applyTransitionClass (el, stage, changeState, compiler) {
64+
function applyTransitionClass (el, stage, changeState) {
6665

6766
if (!endEvent) {
6867
changeState()

0 commit comments

Comments
 (0)