Catalog sizing when navigating.

This commit is contained in:
Zixaphir 2014-03-08 16:51:09 -07:00
parent e6534a5d21
commit 2504cedfee
3 changed files with 3 additions and 3 deletions

View File

@ -12677,7 +12677,7 @@
delete g.THREADID;
QR.link.textContent = 'Start a Thread';
if (Conf['Index Mode'] === 'catalog') {
return $.addClass(doc, 'catalog-mode');
return Index.cb.toggleCatalogMode();
}
},
thread: function() {

View File

@ -12691,7 +12691,7 @@
delete g.THREADID;
QR.link.textContent = 'Start a Thread';
if (Conf['Index Mode'] === 'catalog') {
return $.addClass(doc, 'catalog-mode');
return Index.cb.toggleCatalogMode();
}
},
thread: function() {

View File

@ -93,7 +93,7 @@ Navigate =
index: ->
delete g.THREADID
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: ->
QR.link.textContent = 'Reply to Thread'