@@ -6,7 +6,7 @@ async function copyAgentPrompt() {
66
77 try {
88 await navigator . clipboard . writeText ( promptElement . textContent ) ;
9- button . textContent = '✓ 已複製' ;
9+ button . textContent = '已複製' ;
1010 button . style . background = '#48bb78' ;
1111
1212 setTimeout ( ( ) => {
@@ -24,7 +24,7 @@ async function copyAgentPrompt() {
2424
2525 try {
2626 document . execCommand ( 'copy' ) ;
27- button . textContent = '✓ 已複製' ;
27+ button . textContent = '已複製' ;
2828 button . style . background = '#48bb78' ;
2929
3030 setTimeout ( ( ) => {
@@ -65,7 +65,7 @@ async function loadMarkdown(path, title) {
6565
6666 // 顯示 Modal
6767 modal . style . display = 'block' ;
68- body . innerHTML = '<div class="markdown-loading">📡 載入中...</div>' ;
68+ body . innerHTML = '<div class="markdown-loading">載入中...</div>' ;
6969
7070 try {
7171 // Fetch Markdown 檔案,加入防快取參數
@@ -110,7 +110,7 @@ async function loadMarkdown(path, title) {
110110 } catch ( error ) {
111111 body . innerHTML = `
112112 <div style="text-align: center; padding: 50px; color: #f00;">
113- <h2>❌ 載入失敗</h2>
113+ <h2>載入失敗</h2>
114114 <p>無法載入教學內容</p>
115115 <p style="color: #666; font-size: 0.9rem;">${ error . message } </p>
116116 </div>
@@ -209,7 +209,7 @@ function addCopyButtons() {
209209 await navigator . clipboard . writeText ( textToCopy ) ;
210210
211211 // 顯示複製成功
212- button . textContent = '✓ 已複製' ;
212+ button . textContent = '已複製' ;
213213 button . classList . add ( 'copied' ) ;
214214
215215 // 2秒後恢復
@@ -229,7 +229,7 @@ function addCopyButtons() {
229229
230230 try {
231231 document . execCommand ( 'copy' ) ;
232- button . textContent = '✓ 已複製' ;
232+ button . textContent = '已複製' ;
233233 button . classList . add ( 'copied' ) ;
234234
235235 setTimeout ( ( ) => {
0 commit comments