mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2025-12-02 23:08:06 +00:00
Added HTTP upload saver
Now we can save changes to TiddlySpot
This commit is contained in:
@@ -42,15 +42,15 @@ DownloadSaver.prototype.info = {
|
||||
/*
|
||||
Static method that returns true if this saver is capable of working
|
||||
*/
|
||||
exports.canSave = function() {
|
||||
exports.canSave = function(wiki) {
|
||||
return true;
|
||||
};
|
||||
|
||||
/*
|
||||
Create an instance of this saver
|
||||
*/
|
||||
exports.create = function() {
|
||||
return new DownloadSaver();
|
||||
exports.create = function(wiki) {
|
||||
return new DownloadSaver(wiki);
|
||||
};
|
||||
|
||||
})();
|
||||
|
||||
Reference in New Issue
Block a user