mirror of
https://github.com/TiddlyWiki/TiddlyWiki5.git
synced 2026-05-01 11:27:02 +00:00
Use this.wiki where applicable (#4601)
* Use state.wiki * use local wiki where available * fix a couple this vs self cases
This commit is contained in:
@@ -34,9 +34,10 @@ Command.prototype.execute = function() {
|
||||
XLSXImporter = require("$:/plugins/tiddlywiki/xlsx-utils/importer.js").XLSXImporter,
|
||||
importer = new XLSXImporter({
|
||||
filename: filename,
|
||||
importSpec: importSpec
|
||||
importSpec: importSpec,
|
||||
wiki: wiki
|
||||
});
|
||||
$tw.wiki.addTiddlers(importer.getResults());
|
||||
wiki.addTiddlers(importer.getResults());
|
||||
return null;
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user