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

print-window-tiddler
Jermolene 2014-08-02 13:38:39 +01:00
rodzic 1d8e3ef288
commit c8bba8caea
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -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 {