Apply a class to emoticons for CSS selectability

pull/2/head
Noah 2014-12-16 04:00:27 +00:00
parent bf294e0009
commit 2267a810c4
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ def render(message):
for trigger in smileys["map"][img]:
if trigger in message:
# Substitute it.
sub = """<img src="{url}" alt="{trigger}" title="{trigger}">""".format(
sub = """<img src="{url}" class="rophako-emoticon" alt="{trigger}" title="{trigger}">""".format(
url="/static/smileys/{}/{}".format(Config.emoticons.theme, img),
trigger=trigger,
)