Fix #58
This commit is contained in:
parent
d8b299fee7
commit
cbc512c46f
@ -1,3 +1,6 @@
|
||||
seaweedchan:
|
||||
- Fix catalog content sometimes disappearing due to issue with 4chan's javascript
|
||||
|
||||
zixaphir:
|
||||
- Re-added `Quote Hash Navigation` option
|
||||
|
||||
|
||||
@ -1518,8 +1518,11 @@
|
||||
if (a = $("a[href*='/" + g.BOARD + "/']", $.id('boardNavDesktopFoot'))) {
|
||||
a.className = 'current';
|
||||
}
|
||||
cs = $.id('settingsWindowLink');
|
||||
cs.textContent = 'Catalog Settings';
|
||||
cs = $.el('a', {
|
||||
id: 'settingsWindowLink',
|
||||
href: 'javascript:;',
|
||||
textContent: 'Catalog Settings'
|
||||
});
|
||||
if (g.VIEW === 'catalog') {
|
||||
_this.addShortcut(cs);
|
||||
}
|
||||
|
||||
@ -1514,8 +1514,11 @@
|
||||
if (a = $("a[href*='/" + g.BOARD + "/']", $.id('boardNavDesktopFoot'))) {
|
||||
a.className = 'current';
|
||||
}
|
||||
cs = $.id('settingsWindowLink');
|
||||
cs.textContent = 'Catalog Settings';
|
||||
cs = $.el('a', {
|
||||
id: 'settingsWindowLink',
|
||||
href: 'javascript:;',
|
||||
textContent: 'Catalog Settings'
|
||||
});
|
||||
if (g.VIEW === 'catalog') {
|
||||
_this.addShortcut(cs);
|
||||
}
|
||||
|
||||
@ -1517,8 +1517,11 @@
|
||||
if (a = $("a[href*='/" + g.BOARD + "/']", $.id('boardNavDesktopFoot'))) {
|
||||
a.className = 'current';
|
||||
}
|
||||
cs = $.id('settingsWindowLink');
|
||||
cs.textContent = 'Catalog Settings';
|
||||
cs = $.el('a', {
|
||||
id: 'settingsWindowLink',
|
||||
href: 'javascript:;',
|
||||
textContent: 'Catalog Settings'
|
||||
});
|
||||
if (g.VIEW === 'catalog') {
|
||||
_this.addShortcut(cs);
|
||||
}
|
||||
|
||||
@ -73,8 +73,11 @@ Header =
|
||||
if a = $ "a[href*='/#{g.BOARD}/']", $.id 'boardNavDesktopFoot'
|
||||
a.className = 'current'
|
||||
|
||||
cs = $.id('settingsWindowLink')
|
||||
cs.textContent = 'Catalog Settings'
|
||||
cs = $.el 'a',
|
||||
id: 'settingsWindowLink'
|
||||
href: 'javascript:;'
|
||||
textContent: 'Catalog Settings'
|
||||
|
||||
@addShortcut cs if g.VIEW is 'catalog'
|
||||
|
||||
Header.setFooterVisibility Conf['Bottom Board List']
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user