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:
parent
1dc57bda8f
commit
823464ce64
@ -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'
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|||||||
@ -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
|
||||||
|
|
||||||
|
|||||||
@ -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'
|
||||||
|
|||||||
@ -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'
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user