Removes datauri triggered save instructions modal (#7296)

* Do not trigger a save instructions modal when viewing through data uri

* Removed all instances of the no longer used SaveInstructions tiddler
This commit is contained in:
btheado
2023-02-26 21:42:10 +00:00
committed by GitHub
parent 2271f6885a
commit 6479c26b59
26 changed files with 0 additions and 525 deletions
-7
View File
@@ -87,13 +87,6 @@ exports.startup = function() {
}
});
}
// If we're being viewed on a data: URI then give instructions for how to save
if(document.location.protocol === "data:") {
$tw.rootWidget.dispatchEvent({
type: "tm-modal",
param: "$:/language/Modals/SaveInstructions"
});
}
};
})();