1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2025-12-07 17:28:05 +00:00

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 15:42:10 -06:00
committed by GitHub
parent 2271f6885a
commit 6479c26b59
26 changed files with 0 additions and 525 deletions

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