Skip to content
This repository has been archived by the owner on Aug 24, 2021. It is now read-only.

Commit

Permalink
fixed check for undefined
Browse files Browse the repository at this point in the history
  • Loading branch information
mnater committed Oct 16, 2014
1 parent d85bba9 commit d0ee409
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion testsuite/test94.html
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
if (!loaded) {
//fallback for ie<9
interval = setInterval(function() {
if (!!Hyphenator) {
if (window.Hyphenator !== undefined) {
clearInterval(interval);
if(!loaded) {
init();
Expand Down

0 comments on commit d0ee409

Please sign in to comment.