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,7 +8291,11 @@
|
|||||||
$('.close', notification).click();
|
$('.close', notification).click();
|
||||||
}
|
}
|
||||||
} else if (QR.nodes) {
|
} else if (QR.nodes) {
|
||||||
QR.close();
|
if (Conf['Persistent QR']) {
|
||||||
|
QR.hide();
|
||||||
|
} else {
|
||||||
|
QR.close();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case Conf['Spoiler tags']:
|
case Conf['Spoiler tags']:
|
||||||
|
|||||||
@ -8312,7 +8312,11 @@
|
|||||||
$('.close', notification).click();
|
$('.close', notification).click();
|
||||||
}
|
}
|
||||||
} else if (QR.nodes) {
|
} else if (QR.nodes) {
|
||||||
QR.close();
|
if (Conf['Persistent QR']) {
|
||||||
|
QR.hide();
|
||||||
|
} else {
|
||||||
|
QR.close();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case Conf['Spoiler tags']:
|
case Conf['Spoiler tags']:
|
||||||
|
|||||||
@ -8296,7 +8296,11 @@
|
|||||||
$('.close', notification).click();
|
$('.close', notification).click();
|
||||||
}
|
}
|
||||||
} else if (QR.nodes) {
|
} else if (QR.nodes) {
|
||||||
QR.close();
|
if (Conf['Persistent QR']) {
|
||||||
|
QR.hide();
|
||||||
|
} else {
|
||||||
|
QR.close();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case Conf['Spoiler tags']:
|
case Conf['Spoiler tags']:
|
||||||
|
|||||||
@ -41,7 +41,10 @@ Keybinds =
|
|||||||
for notification in notifications
|
for notification in notifications
|
||||||
$('.close', notification).click()
|
$('.close', notification).click()
|
||||||
else if QR.nodes
|
else if QR.nodes
|
||||||
QR.close()
|
if Conf['Persistent QR']
|
||||||
|
QR.hide()
|
||||||
|
else
|
||||||
|
QR.close()
|
||||||
when Conf['Spoiler tags']
|
when Conf['Spoiler tags']
|
||||||
return if target.nodeName isnt 'TEXTAREA'
|
return if target.nodeName isnt 'TEXTAREA'
|
||||||
Keybinds.tags 'spoiler', target
|
Keybinds.tags 'spoiler', target
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user