1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-06-16 10:29:54 +00:00

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.
This commit is contained in:
Arlen22 2016-12-17 10:27:25 -05:00 committed by Jeremy Ruston
parent 1530b3e2d8
commit 66a13cb915

View File

@ -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;
};
/*