Skip to content

Commit

Permalink
Fixes #1588, setTimeout not available in all environments
Browse files Browse the repository at this point in the history
  • Loading branch information
jrburke committed Sep 16, 2016
1 parent 861f5e4 commit 8c83e84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion require.js
Expand Up @@ -2139,4 +2139,4 @@ var requirejs, require, define;

//Set up with config info.
req(cfg);
}(this, setTimeout));
}(this, (typeof setTimeout === 'undefined' ? undefined : setTimeout)));

0 comments on commit 8c83e84

Please sign in to comment.