You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
589 B
15 lines
589 B
10 months ago
|
(function() {
|
||
|
if (typeof WeixinJSBridge == "object" && typeof WeixinJSBridge.invoke == "function") {
|
||
|
handleFontSize();
|
||
|
} else {
|
||
|
document.addEventListener("WeixinJSBridgeReady", handleFontSize, false);
|
||
|
}
|
||
|
function handleFontSize() {
|
||
|
// 设置网页字体为默认大小
|
||
|
WeixinJSBridge.invoke('setFontSizeCallback', { 'fontSize' : 0 });
|
||
|
// 重写设置网页字体大小的事件
|
||
|
WeixinJSBridge.on('menu:setfont', function() {
|
||
|
WeixinJSBridge.invoke('setFontSizeCallback', { 'fontSize' : 0 });
|
||
|
});
|
||
|
}
|
||
|
})();
|