Skip to content

Commit

Permalink
-- Fix cache html after login
Browse files Browse the repository at this point in the history
  • Loading branch information
Victor-Mageplaza committed Aug 31, 2021
1 parent bd626af commit bf8fc7e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion view/frontend/web/js/provider.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,9 @@ define(
},

openPopup: function () {
window.open(config.url, config.label, this.getPopupParams());
var date = new Date(),
currentTime = date.getTime();
window.open(config.url + '?' + currentTime, config.label, this.getPopupParams());
},

getPopupParams: function (w, h, l, t) {
Expand Down

0 comments on commit bf8fc7e

Please sign in to comment.