Skip to content
This repository has been archived by the owner on Mar 13, 2018. It is now read-only.

Commit

Permalink
Fixes #16
Browse files Browse the repository at this point in the history
  • Loading branch information
sorvell committed Aug 20, 2014
1 parent a388f81 commit 2e92c89
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions transitions/hero-transition.html
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@

h.h1.style[TRANSITION_NAME] = wt.join(', ');
h.h1.style.borderRadius = h.r1;
h.h1.style[TRANSFORM_NAME] = 'none';
h.h1.style[TRANSFORM_NAME] = '';
});

this.super(arguments);
Expand Down Expand Up @@ -236,8 +236,8 @@
this.super(arguments);
if (scope._heroes) {
scope._heroes.forEach(function(h) {
h.h1.style[TRANSITION_NAME] = null;
h.h1.style[TRANSFORM_NAME] = null;
h.h1.style[TRANSITION_NAME] = '';
h.h1.style[TRANSFORM_NAME] = '';
});
scope._heroes = [];
}
Expand Down

0 comments on commit 2e92c89

Please sign in to comment.