mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-01 07:36:18 +00:00
21 lines
543 B
JavaScript
21 lines
543 B
JavaScript
|
//--
|
||
|
//-- Deprecated FileAdaptor functions
|
||
|
//--
|
||
|
|
||
|
FileAdaptor.loadTiddlyWikiCallback = function(status,context,responseText,url,xhr)
|
||
|
{
|
||
|
context.status = status;
|
||
|
if(!status) {
|
||
|
context.statusText = "Error reading file";
|
||
|
} else {
|
||
|
//# Load the content into a TiddlyWiki() object
|
||
|
context.adaptor.store = new TiddlyWiki();
|
||
|
if(!context.adaptor.store.importTiddlyWiki(responseText)) {
|
||
|
context.statusText = config.messages.invalidFileError.format([url]);
|
||
|
context.status = false;
|
||
|
}
|
||
|
}
|
||
|
context.complete(context,context.userParams);
|
||
|
};
|
||
|
|