From 66a13cb9154f019dc2c28e26ed89fb109654b13c Mon Sep 17 00:00:00 2001 From: Arlen22 Date: Sat, 17 Dec 2016 10:27:25 -0500 Subject: [PATCH] TiddlyFox saver canSave() should always return true (#2626) Whether saving is allowed should be determined by the parent side of the TiddlyFox, as this plugin can be used in many places. --- core/modules/savers/tiddlyfox.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/modules/savers/tiddlyfox.js b/core/modules/savers/tiddlyfox.js index a729e26e3..3abe31afe 100644 --- a/core/modules/savers/tiddlyfox.js +++ b/core/modules/savers/tiddlyfox.js @@ -73,7 +73,7 @@ TiddlyFoxSaver.prototype.info = { Static method that returns true if this saver is capable of working */ exports.canSave = function(wiki) { - return (window.location.protocol === "file:"); + return true; }; /*