Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 7dc27df

Browse files
committedDec 6, 2015
fix(poly): fallback for no transition keys. Closes #4191
1 parent 0adf975 commit 7dc27df

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed
 

‎js/utils/poly.js

+3
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@
2626
}
2727
}
2828

29+
// Fallback in case the keys don't exist at all
30+
ionic.CSS.TRANSITION = ionic.CSS.TRANSITION || 'transition';
31+
2932
// The only prefix we care about is webkit for transitions.
3033
var isWebkit = ionic.CSS.TRANSITION.indexOf('webkit') > -1;
3134

0 commit comments

Comments
 (0)
Please sign in to comment.