From 705c88d1aa12e0064f2fdf1566d38f9f1435dc43 Mon Sep 17 00:00:00 2001 From: Jeremy Ruston Date: Sat, 17 Nov 2012 20:17:29 +0000 Subject: [PATCH] Fix TiddlyFox transfer attribute names --- core/modules/savers/tiddlyfox.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/modules/savers/tiddlyfox.js b/core/modules/savers/tiddlyfox.js index 52f4887c2..74e6a6b69 100644 --- a/core/modules/savers/tiddlyfox.js +++ b/core/modules/savers/tiddlyfox.js @@ -20,8 +20,8 @@ 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("tiddlyfox-path",document.location.pathname); - message.setAttribute("tiddlyfox-content",text); + message.setAttribute("data-tiddlyfox-path",document.location.pathname); + message.setAttribute("data-tiddlyfox-content",text); messageBox.appendChild(message); // Create and dispatch the custom event to the extension var event = document.createEvent("Events");