0
0
Fork 1
Spiegel von https://github.com/paviliondev/discourse-custom-wizard.git synchronisiert 2024-11-09 11:52:54 +01:00

IE 11 caches agressively; prevent ajax call from caching

Dieser Commit ist enthalten in:
Chad Boschert 2018-11-19 13:27:20 -06:00 committet von Angus McLeod
Ursprung d735395c3e
Commit 36117bdc60

Datei anzeigen

@ -32,7 +32,7 @@ CustomWizard.reopenClass({
});
export function findCustomWizard(wizardId) {
return ajax({ url: `/w/${wizardId}`, dataType: 'json' }).then(result => {
return ajax({ url: `/w/${wizardId}`, cache: false, dataType: 'json' }).then(result => {
const wizard = result.wizard;
if (!wizard) return null;