mirror of
https://github.com/mastodon/mastodon.git
synced 2024-08-20 21:08:15 -07:00
Remove unused EmojiFormatter#count_tag_nesting
method (#28643)
This commit is contained in:
parent
4ccba94489
commit
3e7a9266ea
1 changed files with 0 additions and 10 deletions
|
@ -66,16 +66,6 @@ class EmojiFormatter
|
||||||
@emoji_map ||= custom_emojis.each_with_object({}) { |e, h| h[e.shortcode] = [full_asset_url(e.image.url), full_asset_url(e.image.url(:static))] }
|
@emoji_map ||= custom_emojis.each_with_object({}) { |e, h| h[e.shortcode] = [full_asset_url(e.image.url), full_asset_url(e.image.url(:static))] }
|
||||||
end
|
end
|
||||||
|
|
||||||
def count_tag_nesting(tag)
|
|
||||||
if tag[1] == '/'
|
|
||||||
-1
|
|
||||||
elsif tag[-2] == '/'
|
|
||||||
0
|
|
||||||
else
|
|
||||||
1
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
def tag_for_emoji(shortcode, emoji)
|
def tag_for_emoji(shortcode, emoji)
|
||||||
return content_tag(:span, ":#{shortcode}:", translate: 'no') if raw_shortcode?
|
return content_tag(:span, ":#{shortcode}:", translate: 'no') if raw_shortcode?
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue