1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-06-30 01:03:16 +00:00

Remove type attribute from the list widget

It's just a shortcut that clutters things up; easier to do the same
thing with a macro
This commit is contained in:
Jeremy Ruston 2013-08-18 20:41:46 +01:00
parent a3fd5664e1
commit a36d3895ff

View File

@ -24,17 +24,6 @@ var ListWidget = function(renderer) {
this.generate();
};
/*
These types are shorthands for particular filters
*/
var typeMappings = {
all: "[!is[system]sort[title]]",
recent: "[!is[system]sort[modified]]",
missing: "[is[missing]sort[title]]",
orphans: "[is[orphan]sort[title]]",
system: "[is[system]sort[title]]"
};
ListWidget.prototype.generate = function() {
// Get our attributes
this.macro = this.renderer.getAttribute("macro");
@ -71,9 +60,7 @@ ListWidget.prototype.generate = function() {
ListWidget.prototype.getTiddlerList = function() {
var filter;
if(this.renderer.hasAttribute("type")) {
filter = typeMappings[this.renderer.getAttribute("type")];
} else if(this.renderer.hasAttribute("filter")) {
if(this.renderer.hasAttribute("filter")) {
filter = this.renderer.getAttribute("filter");
}
if(!filter) {