diff options
Diffstat (limited to '')
-rw-r--r-- | trunk/infrastructure/ace/www/domline.js | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/trunk/infrastructure/ace/www/domline.js b/trunk/infrastructure/ace/www/domline.js index 70f86cc..e8a9ba7 100644 --- a/trunk/infrastructure/ace/www/domline.js +++ b/trunk/infrastructure/ace/www/domline.js @@ -85,6 +85,12 @@ domline.createDomLine = function(nonEmpty, doesWrap, optBrowser, optDocument) { return space+"url"; }); } + if (cls.indexOf('padtag') >= 0) { + cls = cls.replace(/(^| )padtag:(\S+)/g, function(x0, space, padtag) { + href = '/ep/tag/?query=' + padtag; + return space+"padtag padtag_"+padtag; + }); + } if (cls.indexOf('tag') >= 0) { cls = cls.replace(/(^| )tag:(\S+)/g, function(x0, space, tag) { if (! simpleTags) simpleTags = []; |