Merge branch 'bstable'

Conflicts:
	builds/4chan-X-beta.crx
	builds/4chan-X-beta.meta.js
	builds/4chan-X-beta.user.js
	builds/4chan-X-noupdate.crx
	builds/4chan-X-noupdate.user.js
	builds/4chan-X.crx
	builds/4chan-X.meta.js
	builds/4chan-X.user.js
	builds/4chan-X.zip
	builds/updates-beta.xml
	builds/updates.xml
	package.json
This commit is contained in:
ccd0 2015-04-26 03:46:10 -07:00
commit 35520aaa85
2 changed files with 5 additions and 1 deletions

View File

@ -18,6 +18,9 @@ The links to individual versions below are to copies of the script with the upda
### v1.10.10
**v1.10.10.4** *(2015-04-26)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.10.10.4/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.10.10.4/builds/4chan-X-noupdate.crx "Chromium version")]
- Possible fix for bug causing scrolling to the top of the page upon loading image captcha.
**v1.10.10.3** *(2015-04-24)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.10.10.3/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.10.10.3/builds/4chan-X-noupdate.crx "Chromium version")]
- Fix original post form not showing when JS is disabled.

View File

@ -33,7 +33,8 @@ Captcha.fixes =
focus = @images[0].tabIndex isnt 0
for img in @images
img.tabIndex = 0
@focusImage() if focus
if focus
$.queueTask => @focusImage()
focusImage: ->
# XXX Image is not focusable at first in Firefox; to be refactored when I figure out why.