|
@@ -46,11 +46,7 @@ const checkOpenFall = (url, callFunc, noFall) => { |
|
@@ -46,11 +46,7 @@ const checkOpenFall = (url, callFunc, noFall) => { |
46
|
|
46
|
|
47
|
const callIframe = (url, noFall) => {
|
47
|
const callIframe = (url, noFall) => {
|
48
|
checkOpenFall(url, () => {
|
48
|
checkOpenFall(url, () => {
|
49
|
- const ifr = document.createElement('iframe');
|
|
|
50
|
-
|
|
|
51
|
- ifr.src = url;
|
|
|
52
|
- ifr.style.display = 'none';
|
|
|
53
|
- document.body.appendChild(ifr);
|
49
|
+ window.location.href = url;
|
54
|
}, noFall);
|
50
|
}, noFall);
|
55
|
};
|
51
|
};
|
56
|
|
52
|
|