|
@@ -514,7 +514,13 @@ var initMoes = function() {
|
|
|
hideMask();
|
|
|
runMCHook(hook);
|
|
|
} else if(isDynamicStagPopupPresent()) {
|
|
|
- refreshDynamicStagPopup();
|
|
|
+ let targetUrl = false;
|
|
|
+ if (redir) {
|
|
|
+ if (redir.indexOf('[data]') > -1) {
|
|
|
+ targetUrl = redir.replace('[data]', data);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ refreshDynamicStagPopup(targetUrl);
|
|
|
} else if (redir) {
|
|
|
if (redir == "back") {
|
|
|
window.top.history.back();
|
|
@@ -560,7 +566,13 @@ var initMoes = function() {
|
|
|
hideMask();
|
|
|
runMCHook(hook);
|
|
|
} else if(isDynamicStagPopupPresent()) {
|
|
|
- refreshDynamicStagPopup();
|
|
|
+ let targetUrl = false;
|
|
|
+ if (redir) {
|
|
|
+ if (redir.indexOf('[data]') > -1) {
|
|
|
+ targetUrl = redir.replace('[data]', data);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ refreshDynamicStagPopup(targetUrl);
|
|
|
} else if (redir) {
|
|
|
if (redir == "back") {
|
|
|
window.top.history.back();
|