mirror of
https://github.com/codeninjasllc/discourse.git
synced 2025-02-20 05:25:11 -05:00
FEATURE: increase interval to 24 hours for "please refresh site"
Used to be 2 hours, which is a bit tight, especially for people who leave computer running overnight. Keep in mind we always refresh on route change, so clicking on a topic will trigger a refresh
This commit is contained in:
parent
24401e71bf
commit
fd9056973a
1 changed files with 3 additions and 3 deletions
|
@ -12,13 +12,13 @@ export default {
|
||||||
Discourse.set("assetVersion", version);
|
Discourse.set("assetVersion", version);
|
||||||
|
|
||||||
if (!timeoutIsSet && Discourse.get("requiresRefresh")) {
|
if (!timeoutIsSet && Discourse.get("requiresRefresh")) {
|
||||||
// since we can do this transparently for people browsing the forum
|
// Since we can do this transparently for people browsing the forum
|
||||||
// hold back the message a couple of hours
|
// hold back the message 24 hours.
|
||||||
setTimeout(function () {
|
setTimeout(function () {
|
||||||
bootbox.confirm(I18n.lookup("assets_changed_confirm"), function (result) {
|
bootbox.confirm(I18n.lookup("assets_changed_confirm"), function (result) {
|
||||||
if (result) { document.location.reload(); }
|
if (result) { document.location.reload(); }
|
||||||
});
|
});
|
||||||
}, 1000 * 60 * 120);
|
}, 1000 * 60 * 24 * 60);
|
||||||
timeoutIsSet = true;
|
timeoutIsSet = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue