1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2025-01-22 23:16:53 +00:00

Fix issue preventing tags being added to a tiddler with no existing tags

This commit is contained in:
Jeremy Ruston 2013-06-11 14:52:01 +01:00
parent 3fb1c2a2e4
commit 204bd69e83

View File

@ -63,7 +63,7 @@ FieldManglerWidget.prototype.handleRemoveTagEvent = function(event) {
var p = tiddler.fields.tags.indexOf(event.currentTag);
if(p !== -1) {
var modification = {};
modification.tags = tiddler.fields.tags.slice(0);
modification.tags = (tiddler.fields.tags || []).slice(0);
modification.tags.splice(p,1);
this.renderer.renderTree.wiki.addTiddler(new $tw.Tiddler(tiddler,modification));
}
@ -75,7 +75,7 @@ FieldManglerWidget.prototype.handleAddTagEvent = function(event) {
var tiddler = this.renderer.renderTree.wiki.getTiddler(this.tiddlerTitle);
if(tiddler && typeof event.param === "string" && event.param !== "") {
var modification = {};
modification.tags = tiddler.fields.tags.slice(0);
modification.tags = (tiddler.fields.tags || []).slice(0);
$tw.utils.pushTop(modification.tags,event.param);
this.renderer.renderTree.wiki.addTiddler(new $tw.Tiddler(tiddler,modification));
}