Small fixes

Quote Threading disabled by default
Added missing titles to Header icons
Download Link should now appear in the Menu
This commit is contained in:
Nebukazar 2014-04-09 01:57:42 +02:00
parent 1dc57bda8f
commit 823464ce64
4 changed files with 4 additions and 2 deletions

View File

@ -396,7 +396,7 @@ Config =
'Add \'(Cross-thread)\' to cross-threads quotes.'
]
'Quote Threading': [
true
false
'Thread conversations'
]

View File

@ -4,6 +4,7 @@ Settings =
link = $.el 'a',
className: 'settings-link fa fa-wrench'
textContent: 'Settings'
title: '4chan X Settings'
href: 'javascript:;'
$.on link, 'click', Settings.open

View File

@ -1,6 +1,6 @@
DownloadLink =
init: ->
return if g.VIEW is 'catalog' or !Conf['Menu'] or !Conf['Download Link']
return if !g.VIEW is 'catalog' or !Conf['Menu'] or !Conf['Download Link']
a = $.el 'a',
className: 'download-link'

View File

@ -5,6 +5,7 @@ ThreadWatcher =
@shortcut = sc = $.el 'a',
id: 'watcher-link'
textContent: 'Watcher'
title: 'Thread Watcher'
href: 'javascript:;'
className: 'disabled fa fa-eye'