mirror of
https://github.com/discourse/discourse.git
synced 2024-12-17 19:53:43 +08:00
29 lines
831 B
JavaScript
29 lines
831 B
JavaScript
/**
|
|
Subscribe to "asset-version" change events via the Message Bus
|
|
**/
|
|
export default {
|
|
name: "asset-version",
|
|
after: "message-bus",
|
|
|
|
initialize: function () {
|
|
var timeoutIsSet = false;
|
|
if (!Discourse.MessageBus) { return; }
|
|
|
|
Discourse.MessageBus.subscribe("/global/asset-version", function (version) {
|
|
Discourse.set("assetVersion", version);
|
|
|
|
if (!timeoutIsSet && Discourse.get("requiresRefresh")) {
|
|
// since we can do this transparently for people browsing the forum
|
|
// hold back the message a couple of hours
|
|
setTimeout(function () {
|
|
bootbox.confirm(I18n.lookup("assets_changed_confirm"), function (result) {
|
|
if (result) { document.location.reload(); }
|
|
});
|
|
}, 1000 * 60 * 120);
|
|
timeoutIsSet = true;
|
|
}
|
|
|
|
});
|
|
}
|
|
};
|