1 2 3 4 5 6 7 8 9 10 11 12 13
| function handleFontSize() { WeixinJSBridge.invoke('setFontSizeCallback', { 'fontSize' : 0 }) WeixinJSBridge.on('menu:setfont', function() { WeixinJSBridge.invoke('setFontSizeCallback', { 'fontSize' : 0 }) }) } if (typeof WeixinJSBridge === "object" && typeof WeixinJSBridge.invoke === "function") { handleFontSize() } else { document.addEventListener("WeixinJSBridgeReady", handleFontSize, false) }
|