close seaweedchan/issues/78
This commit is contained in:
parent
9d50340307
commit
6bc0e8de92
@ -4695,6 +4695,9 @@
|
|||||||
return $.on($('a[title="Quote this post"]', this.nodes.info), 'click', QR.quote);
|
return $.on($('a[title="Quote this post"]', this.nodes.info), 'click', QR.quote);
|
||||||
},
|
},
|
||||||
persist: function() {
|
persist: function() {
|
||||||
|
if (!QR.postingIsEnabled) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
QR.open();
|
QR.open();
|
||||||
if (Conf['Auto Hide QR']) {
|
if (Conf['Auto Hide QR']) {
|
||||||
return QR.hide();
|
return QR.hide();
|
||||||
|
|||||||
@ -4679,6 +4679,9 @@
|
|||||||
return $.on($('a[title="Quote this post"]', this.nodes.info), 'click', QR.quote);
|
return $.on($('a[title="Quote this post"]', this.nodes.info), 'click', QR.quote);
|
||||||
},
|
},
|
||||||
persist: function() {
|
persist: function() {
|
||||||
|
if (!QR.postingIsEnabled) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
QR.open();
|
QR.open();
|
||||||
if (Conf['Auto Hide QR']) {
|
if (Conf['Auto Hide QR']) {
|
||||||
return QR.hide();
|
return QR.hide();
|
||||||
|
|||||||
@ -4682,6 +4682,9 @@
|
|||||||
return $.on($('a[title="Quote this post"]', this.nodes.info), 'click', QR.quote);
|
return $.on($('a[title="Quote this post"]', this.nodes.info), 'click', QR.quote);
|
||||||
},
|
},
|
||||||
persist: function() {
|
persist: function() {
|
||||||
|
if (!QR.postingIsEnabled) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
QR.open();
|
QR.open();
|
||||||
if (Conf['Auto Hide QR']) {
|
if (Conf['Auto Hide QR']) {
|
||||||
return QR.hide();
|
return QR.hide();
|
||||||
|
|||||||
@ -72,6 +72,7 @@ QR =
|
|||||||
$.on $('a[title="Quote this post"]', @nodes.info), 'click', QR.quote
|
$.on $('a[title="Quote this post"]', @nodes.info), 'click', QR.quote
|
||||||
|
|
||||||
persist: ->
|
persist: ->
|
||||||
|
return unless QR.postingIsEnabled
|
||||||
QR.open()
|
QR.open()
|
||||||
QR.hide() if Conf['Auto Hide QR']
|
QR.hide() if Conf['Auto Hide QR']
|
||||||
open: ->
|
open: ->
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user