소스 검색

Copy the permalink to the clipboard and put it in the url bar, rather than reloading the page

master
Fen Dweller 5 년 전
부모
커밋
127229d9cb
1개의 변경된 파일5개의 추가작업 그리고 3개의 파일을 삭제
  1. +5
    -3
      macrovision.js

+ 5
- 3
macrovision.js 파일 보기

@@ -3646,10 +3646,12 @@ function b64DecodeUnicode(str) {

function linkScene() {
loc = new URL(window.location);


window.location = loc.protocol + "//" + loc.host + loc.pathname + "?scene=" + b64EncodeUnicode(JSON.stringify(exportScene()));
const link = loc.protocol + "//" + loc.host + loc.pathname + "?scene=" + b64EncodeUnicode(JSON.stringify(exportScene()));
window.history.replaceState(null, "Macrovision", link);
navigator.clipboard.writeText(link);
toast("Copied permalink to clipboard");
}

function copyScene() {
const results = exportScene();



불러오는 중...
취소
저장