mirror of
https://github.com/Jermolene/TiddlyWiki5.git
synced 2026-01-30 04:11:32 -08:00
Decode paths for TiddlyFox
This commit is contained in:
parent
5a6c2b91f8
commit
28707edd72
1 changed files with 1 additions and 1 deletions
|
|
@ -20,7 +20,7 @@ TiddlyFoxSaver.prototype.save = function(text) {
|
|||
if(messageBox) {
|
||||
// Create the message element and put it in the message box
|
||||
var message = document.createElement("div");
|
||||
message.setAttribute("data-tiddlyfox-path",document.location.pathname);
|
||||
message.setAttribute("data-tiddlyfox-path",decodeURIComponent(document.location.pathname));
|
||||
message.setAttribute("data-tiddlyfox-content",text);
|
||||
messageBox.appendChild(message);
|
||||
// Create and dispatch the custom event to the extension
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue