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

Commit

Permalink
Merge remote-tracking branch 'hussainb/patch-1'
Browse files Browse the repository at this point in the history
  • Loading branch information
zaggino committed Aug 6, 2015
2 parents 1e09fb2 + 8c98023 commit c7c0c54
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/document/DocumentCommandHandlers.js
Original file line number Diff line number Diff line change
Expand Up @@ -1635,7 +1635,10 @@ define(function (require, exports, module) {
href = href.substr(0, fragment);
}

window.location.href = href;
// Defer for a more successful reload - issue #11539
setTimeout(function () {
window.location.href = href;
}, 1000);
});
}).fail(function () {
_isReloading = false;
Expand Down

0 comments on commit c7c0c54

Please sign in to comment.