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

Commit

Permalink
(#472) fix race causing stuck initialization
Browse files Browse the repository at this point in the history
  • Loading branch information
jpommerening committed Jul 19, 2017
1 parent 46b3341 commit 1f24580
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -2,6 +2,7 @@

## Last Changes

- [#472](https://github.com/LaxarJS/laxar/issues/472): bootstrapping: fixed a race condition that sometimes caused initialization to get stuck indefinitely
- [#470](https://github.com/LaxarJS/laxar/issues/470): project: upgrade to webpack 3
- [#471](https://github.com/LaxarJS/laxar/issues/471): documentation: fixed outdated things in widgets and activities manual

Expand Down
2 changes: 1 addition & 1 deletion laxar.js
Expand Up @@ -322,7 +322,7 @@ function whenDocumentReady( callback ) {
}
}

if( document.readyState === 'complete' ) {
if( document.readyState === 'complete' || document.readyState === 'interactive' ) {
ready();
}
else {
Expand Down

0 comments on commit 1f24580

Please sign in to comment.