mizzzuno commited on
Commit
61014cb
·
verified ·
1 Parent(s): 15e686d

Update talkDetail.html

Browse files
Files changed (1) hide show
  1. talkDetail.html +4 -4
talkDetail.html CHANGED
@@ -49,8 +49,8 @@
49
  <div class="container">
50
  <h2>会話の文字起こし表示</h2>
51
  <div id="transcription">ここに会話内容が表示されます。</div>
52
- <button onclick="goToRecording()">録音画面</button>
53
- <button onclick="goToFeedback()">フィードバック画面</button>
54
  </div>
55
 
56
  <script>
@@ -78,12 +78,12 @@
78
  }
79
 
80
  // 録音画面に戻る
81
- function goToRecording() {
82
  window.location.href = 'index.html';
83
  }
84
 
85
  // フィードバック画面に移動
86
- function goToFeedback() {
87
  window.location.href = 'feedback.html';
88
  }
89
 
 
49
  <div class="container">
50
  <h2>会話の文字起こし表示</h2>
51
  <div id="transcription">ここに会話内容が表示されます。</div>
52
+ <button onclick="showRecorder()">録音画面を表示</button>
53
+ <button onclick="showHistory()">フィードバック画面を表示</button>
54
  </div>
55
 
56
  <script>
 
78
  }
79
 
80
  // 録音画面に戻る
81
+ function showRecorder() {
82
  window.location.href = 'index.html';
83
  }
84
 
85
  // フィードバック画面に移動
86
+ function showHistory() {
87
  window.location.href = 'feedback.html';
88
  }
89