1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-11-30 21:39:57 +00:00

Switch to "tw-tagged-" prefix for CSS tags

This commit is contained in:
Jermolene 2014-08-02 13:38:39 +01:00
parent 1d8e3ef288
commit c8bba8caea

View File

@ -57,7 +57,7 @@ TiddlerWidget.prototype.getTagClasses = function() {
if(tiddler) { if(tiddler) {
var tags = []; var tags = [];
$tw.utils.each(tiddler.fields.tags,function(tag) { $tw.utils.each(tiddler.fields.tags,function(tag) {
tags.push("tw-tag-" + encodeURIComponent(tag)); tags.push("tw-tagged-" + encodeURIComponent(tag));
}); });
return tags.join(" "); return tags.join(" ");
} else { } else {