1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2025-11-29 05:25:16 +00:00

Rename more "tw-*" classes to "tc-*"

Part of #764
This commit is contained in:
Jermolene
2014-08-28 19:08:31 +01:00
parent f8b9471549
commit a1ec52c5cb
29 changed files with 70 additions and 70 deletions

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-tagged-" + encodeURIComponent(tag));
tags.push("tc-tagged-" + encodeURIComponent(tag));
});
return tags.join(" ");
} else {