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
+1 -1
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 {