浏览代码

Merge branch 'dev_220318_test' into test

wenliming 3 年之前
父节点
当前提交
21c6fd7d56
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      src/logic/twitter.js

+ 2 - 2
src/logic/twitter.js

@@ -99,11 +99,11 @@ export function showGiveDialogHandler(userInfo) {
 }
 
 export function showIframeHandler() {
-    dom.iframe.style.display = 'block';
+    document.getElementById('iframe-content').style.display = 'block';
 }
 
 export function hideIframeHandler() {
-    dom.iframe.style.display = 'none';
+    document.getElementById('iframe-content').style.display = 'none';
 }
 
 /**