Commit ae8d4aaf authored by limingzhe's avatar limingzhe

fix: debug

parent ee678ce8
...@@ -1180,26 +1180,27 @@ cc.Class({ ...@@ -1180,26 +1180,27 @@ cc.Class({
await this.initOption(); await this.initOption();
// this.data.isDebug = false; this.startTiming();
// this.initQuesArr();
// // this.initHotZone();
// this.initWord();
// this.initDebugLayer();
// this.initCurQues(); },
// this.initTipPanel(); startTiming() {
const cw = window.courseware;
if (!cw || !cw.startTiming) {
return;
}
cw.startTiming();
// this.initVideoNode(); },
// this.initRestartNode(); showResultPanel() {
// // this.showStartAudio();
const cw = window.courseware;
if (!cw || !cw.showResultPanel) {
return;
}
cw.showResultPanel(null, this.score);
}, },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment