From 9a0bc1b20aed636c723bc222b5acdb96f37e3551 Mon Sep 17 00:00:00 2001 From: "Davide P. Cervone" Date: Sun, 21 Aug 2016 09:41:58 -0400 Subject: [PATCH] Change 'rev=' to 'V=' in cache braking code (in hopes that doesn't conflict with anyone's server usage). Resolves issue #1570. --- unpacked/MathJax.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/unpacked/MathJax.js b/unpacked/MathJax.js index 182809727..dd5211d43 100644 --- a/unpacked/MathJax.js +++ b/unpacked/MathJax.js @@ -705,9 +705,9 @@ MathJax.cdnFileVersions = {}; // can be used to specify revisions for individua // Cache-breaking revision number for file // fileRev: function (file) { - var rev = BASE.cdnFileVersions[file] || BASE.cdnVersion || ''; - if (rev) {rev = "?rev="+rev} - return rev; + var V = BASE.cdnFileVersions[file] || BASE.cdnVersion || ''; + if (V) {V = "?V="+V} + return V; }, urlRev: function (file) {return this.fileURL(file)+this.fileRev(file)},