1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-11-27 12:07:19 +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) {
var tags = [];
$tw.utils.each(tiddler.fields.tags,function(tag) {
tags.push("tw-tag-" + encodeURIComponent(tag));
tags.push("tw-tagged-" + encodeURIComponent(tag));
});
return tags.join(" ");
} else {