mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
34 lines
632 B
JavaScript
34 lines
632 B
JavaScript
function iframeReady(iframe, callback) {
|
|
const doc = iframe.contentDocument || iframe.contentWindow.document;
|
|
const interval = () => {
|
|
if (iframe.contentWindow.changePath) {
|
|
callback();
|
|
} else {
|
|
setTimeout(() => {
|
|
interval();
|
|
}, 50);
|
|
}
|
|
};
|
|
|
|
if (doc.readyState === 'complete') {
|
|
interval();
|
|
} else {
|
|
iframe.onload = interval;
|
|
}
|
|
}
|
|
|
|
const ua = navigator.userAgent.toLowerCase();
|
|
const isMobile = /ios|iphone|ipod|ipad|android/.test(ua);
|
|
|
|
function importAll(map, r) {
|
|
r.keys().forEach(key => {
|
|
map[key] = r(key);
|
|
});
|
|
}
|
|
|
|
export {
|
|
isMobile,
|
|
importAll,
|
|
iframeReady
|
|
};
|