From f86d079dcafc190e634f248d1dcc7007b7cf1028 Mon Sep 17 00:00:00 2001 From: LiJun <LiJun@192.168.10.18> Date: 星期二, 30 十月 2018 10:25:55 +0800 Subject: [PATCH] 屏蔽页面输出 --- gx_tieta/WebRoot/js/VoiceUtil.js | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gx_tieta/WebRoot/js/VoiceUtil.js b/gx_tieta/WebRoot/js/VoiceUtil.js index cfc0f6a..c952f14 100644 --- a/gx_tieta/WebRoot/js/VoiceUtil.js +++ b/gx_tieta/WebRoot/js/VoiceUtil.js @@ -28,7 +28,7 @@ var to_speak = new SpeechSynthesisUtterance(txt); to_speak.voice = this.voice; // 璁惧畾涓枃鎾姤 to_speak.rate = this.rate; - console.info(to_speak); + //console.info(to_speak); this.speak.speak(to_speak); var starttime = new Date(); @@ -37,7 +37,7 @@ if(callback && typeof callback == 'function'){ var endtime = new Date(); var timelong = (endtime.getTime()-starttime.getTime())/1000; - console.info(parseInt(_timeInterval)+"==="+parseInt(timelong)); + //console.info(parseInt(_timeInterval)+"==="+parseInt(timelong)); if(timelong > this.timeInterval){ callback(); }else{ -- Gitblit v1.9.1