Merge branch 'bstable'

This commit is contained in:
ccd0 2017-10-25 21:25:56 -07:00
commit 78e0935544
2 changed files with 0 additions and 22 deletions

View File

@ -1,20 +0,0 @@
BoardTips =
tips:
qa: [
1
<%= html(
'New to /qa/?<br>' +
'/qa/ is NOT an effective way to contact the mods.<br>' +
'Message a mod on <a href="https://www.rizon.net/chat" target="_blank">IRC</a> or use <a href="https://www.4chan.org/feedback" target="_blank">feedback</a> instead. ' +
'More details <a href="https://www.4chan-x.net/qa_instructions.png" target="_blank">here</a>.'
) %>
]
init: ->
tip = BoardTips.tips[g.BOARD.ID]
seen = Conf['BoardTips.seen']
return if !tip or (seen[g.BOARD.ID] and seen[g.BOARD.ID] >= tip[0])
seen[g.BOARD.ID] = tip[0]
$.set 'BoardTips.seen', seen
el = $.el 'span', tip[1]
new Notice 'info', el

View File

@ -55,7 +55,6 @@ Main =
Conf['selectedArchives'] = {}
Conf['cooldowns'] = {}
Conf['Index Sort'] = {}
Conf['BoardTips.seen'] = {}
Conf["Last Long Reply Thresholds #{i}"] = {} for i in [0...2]
# XXX old key names
@ -513,7 +512,6 @@ Main =
['Banner', Banner]
['Flash Features', Flash]
['Reply Pruning', ReplyPruning]
['Board Tips', BoardTips]
<% if (readJSON('/.tests_enabled')) { %>
['Build Test', Build.Test]
<% } %>