1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-10-02 17:00:45 +00:00

Fixed typo in the list macro

Pesky dots and dashes
This commit is contained in:
Jeremy Ruston 2012-10-24 22:13:44 +01:00
parent 5f17e7d01b
commit 3647690308

View File

@ -132,7 +132,7 @@ Create the tiddler macro needed to represent a given tiddler
exports.createListElementMacro = function(title) {
// Check if the tiddler is a draft
var tiddler = this.wiki.getTiddler(title),
draft = tiddler ? tiddler.hasField("draft-of") : false;
draft = tiddler ? tiddler.hasField("draft.of") : false;
// Figure out the template to use
var template = this.params.template,
templateText = this.params.templateText;