Fix #32
This commit is contained in:
parent
c5cdbd62df
commit
9dbce3e85e
@ -1,3 +1,9 @@
|
|||||||
|
seaweedchan:
|
||||||
|
- Change ESC functionality in QR to autohide if Persistent QR is enabled
|
||||||
|
|
||||||
|
MayhemYDG:
|
||||||
|
- Add nyafuu archiving for /w/
|
||||||
|
|
||||||
### 1.1.3 - 2013-04-28
|
### 1.1.3 - 2013-04-28
|
||||||
seaweedchan:
|
seaweedchan:
|
||||||
- Chrome doesn't get .null, so don't style it
|
- Chrome doesn't get .null, so don't style it
|
||||||
|
|||||||
@ -8291,8 +8291,12 @@
|
|||||||
$('.close', notification).click();
|
$('.close', notification).click();
|
||||||
}
|
}
|
||||||
} else if (QR.nodes) {
|
} else if (QR.nodes) {
|
||||||
|
if (Conf['Persistent QR']) {
|
||||||
|
QR.hide();
|
||||||
|
} else {
|
||||||
QR.close();
|
QR.close();
|
||||||
}
|
}
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
case Conf['Spoiler tags']:
|
case Conf['Spoiler tags']:
|
||||||
if (target.nodeName !== 'TEXTAREA') {
|
if (target.nodeName !== 'TEXTAREA') {
|
||||||
|
|||||||
@ -8312,8 +8312,12 @@
|
|||||||
$('.close', notification).click();
|
$('.close', notification).click();
|
||||||
}
|
}
|
||||||
} else if (QR.nodes) {
|
} else if (QR.nodes) {
|
||||||
|
if (Conf['Persistent QR']) {
|
||||||
|
QR.hide();
|
||||||
|
} else {
|
||||||
QR.close();
|
QR.close();
|
||||||
}
|
}
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
case Conf['Spoiler tags']:
|
case Conf['Spoiler tags']:
|
||||||
if (target.nodeName !== 'TEXTAREA') {
|
if (target.nodeName !== 'TEXTAREA') {
|
||||||
|
|||||||
@ -8296,8 +8296,12 @@
|
|||||||
$('.close', notification).click();
|
$('.close', notification).click();
|
||||||
}
|
}
|
||||||
} else if (QR.nodes) {
|
} else if (QR.nodes) {
|
||||||
|
if (Conf['Persistent QR']) {
|
||||||
|
QR.hide();
|
||||||
|
} else {
|
||||||
QR.close();
|
QR.close();
|
||||||
}
|
}
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
case Conf['Spoiler tags']:
|
case Conf['Spoiler tags']:
|
||||||
if (target.nodeName !== 'TEXTAREA') {
|
if (target.nodeName !== 'TEXTAREA') {
|
||||||
|
|||||||
@ -41,6 +41,9 @@ Keybinds =
|
|||||||
for notification in notifications
|
for notification in notifications
|
||||||
$('.close', notification).click()
|
$('.close', notification).click()
|
||||||
else if QR.nodes
|
else if QR.nodes
|
||||||
|
if Conf['Persistent QR']
|
||||||
|
QR.hide()
|
||||||
|
else
|
||||||
QR.close()
|
QR.close()
|
||||||
when Conf['Spoiler tags']
|
when Conf['Spoiler tags']
|
||||||
return if target.nodeName isnt 'TEXTAREA'
|
return if target.nodeName isnt 'TEXTAREA'
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user