This commit is contained in:
Jordan Bates 2013-07-22 08:38:49 -07:00
parent cc86e47bab
commit c9ec6b5497
5 changed files with 12 additions and 7 deletions

View File

@ -255,7 +255,7 @@
'Bottom Board List': true, 'Bottom Board List': true,
'Custom Board Navigation': true 'Custom Board Navigation': true
}, },
boardnav: "[ toggle-all ]\na-replace\ng-replace\nv-replace\nvg-replace\nvr-replace\nck-replace\nfit-replace\njp-replace\nmu-replace\ntv-replace\nq-replace\n[external-text:\"FAQ\",\"https://github.com/seaweedchan/4chan-x/wiki/Frequently-Asked-Questions\"]", boardnav: "[ toggle-all ]\na-replace\nc-replace\ng-replace\nk-replace\nv-replace\nvg-replace\nvr-replace\nck-replace\nco-replace\nfit-replace\njp-replace\nmu-replace\nsp-replace\ntv-replace\nvp-replace\nq-replace\n[external-text:\"FAQ\",\"https://github.com/seaweedchan/4chan-x/wiki/Frequently-Asked-Questions\"]",
QR: { QR: {
'QR.personas': "#email:\"sage\";boards:jp;always" 'QR.personas': "#email:\"sage\";boards:jp;always"
}, },
@ -4674,7 +4674,7 @@
} }
$.ready(this.initReady); $.ready(this.initReady);
if (Conf['Persistent QR']) { if (Conf['Persistent QR']) {
if (g.BOARD.ID !== 'f') { if (!(g.BOARD.ID === 'f' && g.VIEW === 'index')) {
$.on(d, '4chanXInitFinished', this.persist); $.on(d, '4chanXInitFinished', this.persist);
} else { } else {
$.ready(this.persist); $.ready(this.persist);

View File

@ -256,7 +256,7 @@
'Bottom Board List': true, 'Bottom Board List': true,
'Custom Board Navigation': true 'Custom Board Navigation': true
}, },
boardnav: "[ toggle-all ]\na-replace\ng-replace\nv-replace\nvg-replace\nvr-replace\nck-replace\nfit-replace\njp-replace\nmu-replace\ntv-replace\nq-replace\n[external-text:\"FAQ\",\"https://github.com/seaweedchan/4chan-x/wiki/Frequently-Asked-Questions\"]", boardnav: "[ toggle-all ]\na-replace\nc-replace\ng-replace\nk-replace\nv-replace\nvg-replace\nvr-replace\nck-replace\nco-replace\nfit-replace\njp-replace\nmu-replace\nsp-replace\ntv-replace\nvp-replace\nq-replace\n[external-text:\"FAQ\",\"https://github.com/seaweedchan/4chan-x/wiki/Frequently-Asked-Questions\"]",
QR: { QR: {
'QR.personas': "#email:\"sage\";boards:jp;always" 'QR.personas': "#email:\"sage\";boards:jp;always"
}, },
@ -4658,7 +4658,7 @@
} }
$.ready(this.initReady); $.ready(this.initReady);
if (Conf['Persistent QR']) { if (Conf['Persistent QR']) {
if (g.BOARD.ID !== 'f') { if (!(g.BOARD.ID === 'f' && g.VIEW === 'index')) {
$.on(d, '4chanXInitFinished', this.persist); $.on(d, '4chanXInitFinished', this.persist);
} else { } else {
$.ready(this.persist); $.ready(this.persist);

View File

@ -236,7 +236,7 @@
'Bottom Board List': true, 'Bottom Board List': true,
'Custom Board Navigation': true 'Custom Board Navigation': true
}, },
boardnav: "[ toggle-all ]\na-replace\ng-replace\nv-replace\nvg-replace\nvr-replace\nck-replace\nfit-replace\njp-replace\nmu-replace\ntv-replace\nq-replace\n[external-text:\"FAQ\",\"https://github.com/seaweedchan/4chan-x/wiki/Frequently-Asked-Questions\"]", boardnav: "[ toggle-all ]\na-replace\nc-replace\ng-replace\nk-replace\nv-replace\nvg-replace\nvr-replace\nck-replace\nco-replace\nfit-replace\njp-replace\nmu-replace\nsp-replace\ntv-replace\nvp-replace\nq-replace\n[external-text:\"FAQ\",\"https://github.com/seaweedchan/4chan-x/wiki/Frequently-Asked-Questions\"]",
QR: { QR: {
'QR.personas': "#email:\"sage\";boards:jp;always" 'QR.personas': "#email:\"sage\";boards:jp;always"
}, },
@ -4664,7 +4664,7 @@
} }
$.ready(this.initReady); $.ready(this.initReady);
if (Conf['Persistent QR']) { if (Conf['Persistent QR']) {
if (g.BOARD.ID !== 'f') { if (!(g.BOARD.ID === 'f' && g.VIEW === 'index')) {
$.on(d, '4chanXInitFinished', this.persist); $.on(d, '4chanXInitFinished', this.persist);
} else { } else {
$.ready(this.persist); $.ready(this.persist);

View File

@ -477,15 +477,20 @@ http://iqdb.org/?url=%TURL
boardnav: """ boardnav: """
[ toggle-all ] [ toggle-all ]
a-replace a-replace
c-replace
g-replace g-replace
k-replace
v-replace v-replace
vg-replace vg-replace
vr-replace vr-replace
ck-replace ck-replace
co-replace
fit-replace fit-replace
jp-replace jp-replace
mu-replace mu-replace
sp-replace
tv-replace tv-replace
vp-replace
q-replace q-replace
[external-text:"FAQ","https://github.com/seaweedchan/4chan-x/wiki/Frequently-Asked-Questions"] [external-text:"FAQ","https://github.com/seaweedchan/4chan-x/wiki/Frequently-Asked-Questions"]
""" """

View File

@ -28,7 +28,7 @@ QR =
$.ready @initReady $.ready @initReady
if Conf['Persistent QR'] if Conf['Persistent QR']
unless g.BOARD.ID is 'f' unless g.BOARD.ID is 'f' and g.VIEW is 'index'
$.on d, '4chanXInitFinished', @persist $.on d, '4chanXInitFinished', @persist
else else
$.ready @persist $.ready @persist