mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2026-09-19 00:00:43 +00:00
Added sort operator to filter syntax
This commit is contained in:
@@ -50,7 +50,7 @@ Command.prototype.subcommands.tiddler = function() {
|
||||
};
|
||||
|
||||
Command.prototype.subcommands.tiddlers = function() {
|
||||
var tiddlers = this.commander.wiki.sortTiddlers();
|
||||
var tiddlers = this.commander.wiki.getTiddlers();
|
||||
this.output.write("Wiki contains these tiddlers:\n");
|
||||
for(var t=0; t<tiddlers.length; t++) {
|
||||
this.output.write(tiddlers[t] + "\n");
|
||||
@@ -59,7 +59,7 @@ Command.prototype.subcommands.tiddlers = function() {
|
||||
};
|
||||
|
||||
Command.prototype.subcommands.shadows = function() {
|
||||
var tiddlers = this.commander.wiki.shadows.sortTiddlers();
|
||||
var tiddlers = this.commander.wiki.shadows.getTiddlers();
|
||||
this.output.write("Wiki contains these shadow tiddlers:\n");
|
||||
for(var t=0; t<tiddlers.length; t++) {
|
||||
this.output.write(tiddlers[t] + "\n");
|
||||
|
||||
Reference in New Issue
Block a user