We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d24f215 commit 9d2d9b6Copy full SHA for 9d2d9b6
services/static-webserver/client/source/class/osparc/utils/Utils.js
@@ -255,8 +255,11 @@ qx.Class.define("osparc.utils.Utils", {
255
icon: "@FontAwesome5Solid/redo/14",
256
});
257
reloadButton.addListener("execute", () => {
258
+ // this argument, which is passed and consumed by the boot.js init file,
259
+ // adds a `nocache=rand()` query argument to the js resource calls.
260
+ // This forces a hard reload
261
const noCacheUrl = window.location.href + "?qooxdoo:add-no-cache=true";
- console.log("noCacheUrl", noCacheUrl);
262
+ window.location.href = noCacheUrl;
263
264
return reloadButton;
265
},
0 commit comments