1
0
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:
Jeremy Ruston
2012-07-13 13:03:38 +01:00
parent b4a75b25fc
commit 5e11de719c
4 changed files with 88 additions and 7 deletions

View File

@@ -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);
};
})();