Un-hide the QR and focus the captcha input when clicking on the low-captcha notification.

This commit is contained in:
Mayhem 2013-08-21 22:37:47 +02:00
parent ae8e633ee3
commit 24762fd182

View File

@ -1104,7 +1104,10 @@ QR =
notif = new Notification 'Quick reply warning',
body: "You are running low on cached captchas. Cache count: #{captchasCount}."
icon: Favicon.logo
notif.onclick = -> window.focus()
notif.onclick = ->
QR.open()
QR.captcha.nodes.input.focus()
window.focus()
setTimeout ->
notif.close()
, 7 * $.SECOND