diff --git a/src/General/Config.coffee b/src/General/Config.coffee
index c734364d9..b513d7f85 100755
--- a/src/General/Config.coffee
+++ b/src/General/Config.coffee
@@ -81,10 +81,6 @@ Config =
true
'Show notifications when 4chan X is successfully updated.'
]
- 'Emoji': [
- false
- 'Adds icons next to names for different emails'
- ]
'Color User IDs': [
false
'Assign unique colors to user IDs on boards that use them'
@@ -559,10 +555,6 @@ http://iqdb.org/?url=%TURL
fappe: false
werk: false
- 'sageEmoji': '4chan SS'
-
- 'emojiPos': 'before'
-
'Custom CSS': false
Index:
diff --git a/src/General/Main.coffee b/src/General/Main.coffee
index 05893be36..165318bed 100755
--- a/src/General/Main.coffee
+++ b/src/General/Main.coffee
@@ -284,7 +284,6 @@ Main =
['Index Generator', Index]
['Announcement Hiding', PSAHiding]
['Fourchan thingies', Fourchan]
- ['Emoji', Emoji]
['Color User IDs', IDColor]
['Custom CSS', CustomCSS]
['Linkify', Linkify]
diff --git a/src/General/Settings.coffee b/src/General/Settings.coffee
index 77fed7a87..b34b906c7 100755
--- a/src/General/Settings.coffee
+++ b/src/General/Settings.coffee
@@ -281,11 +281,11 @@ Settings =
items = {}
inputs = {}
- for name in ['boardnav', 'time', 'backlink', 'fileInfo', 'favicon', 'sageEmoji', 'emojiPos', 'usercss']
+ for name in ['boardnav', 'time', 'backlink', 'fileInfo', 'favicon', 'usercss']
input = $ "[name=#{name}]", section
items[name] = Conf[name]
inputs[name] = input
- event = if name in ['favicon', 'usercss', 'sageEmoji', 'emojiPos']
+ event = if name in ['favicon', 'usercss']
'change'
else
'input'
@@ -299,7 +299,6 @@ Settings =
$.get items, (items) ->
for key, val of items
- continue if key is 'emojiPos'
input = inputs[key]
input.value = val
continue if key is 'usercss'
@@ -428,8 +427,6 @@ Settings =
img[1].src = Favicon.unreadSFW
img[2].src = Favicon.unreadNSFW
img[3].src = Favicon.unreadDead
- sageEmoji: ->
- @nextElementSibling.firstElementChild.src = "data:image/png;base64,#{Emoji.sage[@value]}"
togglecss: ->
if $('textarea[name=usercss]', $.x 'ancestor::fieldset[1]', @).disabled = !@checked
CustomCSS.rmStyle()
diff --git a/src/General/html/Settings/Advanced.html b/src/General/html/Settings/Advanced.html
index 9075d1344..00c79fcf5 100755
--- a/src/General/html/Settings/Advanced.html
+++ b/src/General/html/Settings/Advanced.html
@@ -100,25 +100,6 @@
-
-