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.' 'Add \'(Cross-thread)\' to cross-threads quotes.'
] ]
'Quote Threading': [ 'Quote Threading': [
true false
'Thread conversations' 'Thread conversations'
] ]

View File

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

View File

@ -1,6 +1,6 @@
DownloadLink = DownloadLink =
init: -> 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', a = $.el 'a',
className: 'download-link' className: 'download-link'

View File

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