Skip to content

Commit

Permalink
drop unused compiler arg
Browse files Browse the repository at this point in the history
  • Loading branch information
yyx990803 committed Dec 22, 2013
1 parent 309ea3d commit 6a8b377
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/transition.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,7 @@ var transition = module.exports = function (el, stage, cb, compiler) {
return applyTransitionClass(
el,
stage,
changeState,
compiler
changeState
)
} else {
changeState()
Expand All @@ -62,7 +61,7 @@ transition.codes = codes
/**
* Togggle a CSS class to trigger transition
*/
function applyTransitionClass (el, stage, changeState, compiler) {
function applyTransitionClass (el, stage, changeState) {

if (!endEvent) {
changeState()
Expand Down

0 comments on commit 6a8b377

Please sign in to comment.