Skip to content

Commit

Permalink
Update index.js (#1007)
Browse files Browse the repository at this point in the history
  • Loading branch information
lutzroeder committed Nov 22, 2022
1 parent 2d9283c commit 7a5d30b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -523,7 +523,7 @@ host.BrowserHost = class {
}

_openModel(url, identifier) {
url = url + ((/\?/).test(url) ? '&' : '?') + 'cb=' + (new Date()).getTime();
url = url.startsWith('data:') ? url : url + ((/\?/).test(url) ? '&' : '?') + 'cb=' + (new Date()).getTime();
this._view.show('welcome spinner');
const progress = (value) => {
this._view.progress(value);
Expand Down

0 comments on commit 7a5d30b

Please sign in to comment.