feat(folder): right-click "영상 주소 복사" on public and admin
- 공개 폴더(/folder/:name): 새 ctxMenu + public-folder.js 로 우클릭 메뉴 신설
("영상 주소 복사" 만 포함). 좌클릭 재생 기능은 그대로 유지.
- 관리자 폴더(/op/folder/:name): 기존 ctxMenu 에 "영상 주소 복사" 항목과
folder.js 에 copyUrl 핸들러 추가.
- 양쪽 모두 navigator.clipboard.writeText(origin + "/player/" + id) 사용,
실패하면 hidden textarea + execCommand("copy") fallback, 그것도 실패하면
window.prompt 으로 직접 복사 안내. 성공 시 flashToast 로 피드백.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
@@ -39,6 +39,7 @@
|
||||
<div class="ctxMenu" id="ctxMenu" hidden>
|
||||
<button type="button" data-action="edit">수정</button>
|
||||
<button type="button" data-action="rename">이름 변경</button>
|
||||
<button type="button" data-action="copyUrl">영상 주소 복사</button>
|
||||
<button type="button" data-action="delete" class="dangerLink">삭제</button>
|
||||
</div>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user