1.27.6 - fix "update now"

This commit is contained in:
James Campos 2011-04-06 04:11:00 -07:00
parent 90f32b1b38
commit e8e1fddef1
4 changed files with 8 additions and 4 deletions

View File

@ -2,11 +2,12 @@
// @name 4chan x
// @namespace aeosynth
// @description Adds various features.
// @version 1.27.5
// @version 1.27.6
// @copyright 2009-2011 James Campos <james.r.campos@gmail.com>
// @license MIT; http://en.wikipedia.org/wiki/Mit_license
// @include http://boards.4chan.org/*
// @include http://sys.4chan.org/*
// @include file://*
// @updateURL http://userscripts.org/scripts/source/51412.meta.js
// ==/UserScript==
@ -1469,7 +1470,7 @@
interval = $('input[name=interval]', div);
interval.value = GM_getValue('Interval', 10);
$.bind(interval, 'change', updateInterval);
$.bind($('input[type=button]'), 'click', updateNow);
$.bind($('input[type=button]', div), 'click', updateNow);
d.body.appendChild(div);
if (GM_getValue('autoG')) {
return updateAuto.call($("input[name=autoL]", div));

View File

@ -1,3 +1,6 @@
1.27.6
- fix 'update now' button
1.27.5
- fix regression - reload captcha after posting

2
header
View File

@ -2,7 +2,7 @@
// @name 4chan x
// @namespace aeosynth
// @description Adds various features.
// @version 1.27.5
// @version 1.27.6
// @copyright 2009-2011 James Campos <james.r.campos@gmail.com>
// @license MIT; http://en.wikipedia.org/wiki/Mit_license
// @include http://boards.4chan.org/*

View File

@ -1111,7 +1111,7 @@ updaterMake = ->
interval.value = GM_getValue 'Interval', 10
$.bind interval, 'change', updateInterval
$.bind $('input[type=button]'), 'click', updateNow
$.bind $('input[type=button]', div), 'click', updateNow
d.body.appendChild div