瀏覽代碼

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();



Loading…
取消
儲存