Spaces:
Running
Running
Update talkDetail.html
Browse files- 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="
|
53 |
-
<button onclick="
|
54 |
</div>
|
55 |
|
56 |
<script>
|
@@ -78,12 +78,12 @@
|
|
78 |
}
|
79 |
|
80 |
// 録音画面に戻る
|
81 |
-
function
|
82 |
window.location.href = 'index.html';
|
83 |
}
|
84 |
|
85 |
// フィードバック画面に移動
|
86 |
-
function
|
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 |
|