close seaweedchan/issues/78

This commit is contained in:
Zixaphir 2013-05-14 08:57:11 -07:00
parent 9d50340307
commit 6bc0e8de92
4 changed files with 10 additions and 0 deletions

View File

@ -4695,6 +4695,9 @@
return $.on($('a[title="Quote this post"]', this.nodes.info), 'click', QR.quote);
},
persist: function() {
if (!QR.postingIsEnabled) {
return;
}
QR.open();
if (Conf['Auto Hide QR']) {
return QR.hide();

View File

@ -4679,6 +4679,9 @@
return $.on($('a[title="Quote this post"]', this.nodes.info), 'click', QR.quote);
},
persist: function() {
if (!QR.postingIsEnabled) {
return;
}
QR.open();
if (Conf['Auto Hide QR']) {
return QR.hide();

View File

@ -4682,6 +4682,9 @@
return $.on($('a[title="Quote this post"]', this.nodes.info), 'click', QR.quote);
},
persist: function() {
if (!QR.postingIsEnabled) {
return;
}
QR.open();
if (Conf['Auto Hide QR']) {
return QR.hide();

View File

@ -72,6 +72,7 @@ QR =
$.on $('a[title="Quote this post"]', @nodes.info), 'click', QR.quote
persist: ->
return unless QR.postingIsEnabled
QR.open()
QR.hide() if Conf['Auto Hide QR']
open: ->