From 8caf096216b0e6773dd859f19d31e2632a2192dd Mon Sep 17 00:00:00 2001 From: James Campos Date: Sat, 3 Sep 2011 23:27:42 -0700 Subject: [PATCH] blur textarea on persistent qr damn that shit is annoying --- 4chan_x.user.js | 1 + script.coffee | 1 + 2 files changed, 2 insertions(+) diff --git a/4chan_x.user.js b/4chan_x.user.js index ffc07c122..e5726dccb 100644 --- a/4chan_x.user.js +++ b/4chan_x.user.js @@ -1256,6 +1256,7 @@ QR.spoiler = $('.postarea label') ? ' ' : ''; if (conf['Persistent QR']) { QR.dialog(); + $('textarea', QR.qr).blur(); if (conf['Auto Hide QR']) { return $('#autohide', QR.qr).checked = true; } diff --git a/script.coffee b/script.coffee index 170657b8b..bfd3ee7c0 100644 --- a/script.coffee +++ b/script.coffee @@ -989,6 +989,7 @@ QR = QR.spoiler = if $('.postarea label') then ' ' else '' if conf['Persistent QR'] QR.dialog() + $('textarea', QR.qr).blur() if conf['Auto Hide QR'] $('#autohide', QR.qr).checked = true attach: ->