Catalog sizing when navigating.
This commit is contained in:
parent
e6534a5d21
commit
2504cedfee
@ -12677,7 +12677,7 @@
|
|||||||
delete g.THREADID;
|
delete g.THREADID;
|
||||||
QR.link.textContent = 'Start a Thread';
|
QR.link.textContent = 'Start a Thread';
|
||||||
if (Conf['Index Mode'] === 'catalog') {
|
if (Conf['Index Mode'] === 'catalog') {
|
||||||
return $.addClass(doc, 'catalog-mode');
|
return Index.cb.toggleCatalogMode();
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
thread: function() {
|
thread: function() {
|
||||||
|
|||||||
@ -12691,7 +12691,7 @@
|
|||||||
delete g.THREADID;
|
delete g.THREADID;
|
||||||
QR.link.textContent = 'Start a Thread';
|
QR.link.textContent = 'Start a Thread';
|
||||||
if (Conf['Index Mode'] === 'catalog') {
|
if (Conf['Index Mode'] === 'catalog') {
|
||||||
return $.addClass(doc, 'catalog-mode');
|
return Index.cb.toggleCatalogMode();
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
thread: function() {
|
thread: function() {
|
||||||
|
|||||||
@ -93,7 +93,7 @@ Navigate =
|
|||||||
index: ->
|
index: ->
|
||||||
delete g.THREADID
|
delete g.THREADID
|
||||||
QR.link.textContent = 'Start a Thread'
|
QR.link.textContent = 'Start a Thread'
|
||||||
$.addClass doc, 'catalog-mode' if Conf['Index Mode'] is 'catalog'
|
Index.cb.toggleCatalogMode() if Conf['Index Mode'] is 'catalog'
|
||||||
|
|
||||||
thread: ->
|
thread: ->
|
||||||
QR.link.textContent = 'Reply to Thread'
|
QR.link.textContent = 'Reply to Thread'
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user