Removing lint without affecting the feature

pull/3419/head
Marcelo Junior 6 years ago
parent b085662b8e
commit 3c212252bb

@ -181,12 +181,12 @@ export default class Element extends Node {
break;
case 'Transition':
{
const transition = new Transition(component, this, scope, node);
if (node.intro) this.intro = transition;
if (node.outro) this.outro = transition;
break;
}
{
const transition = new Transition(component, this, scope, node);
if (node.intro) this.intro = transition;
if (node.outro) this.outro = transition;
break;
}
case 'Animation':
this.animation = new Animation(component, this, scope, node);

Loading…
Cancel
Save