[Greasemonkey] New version of Familiar Taste
Jason Diamond
jason at diamond.name
Tue Oct 11 18:22:55 EDT 2005
I just tried this out for the first time but it wasn't working because
my password was never being saved. "pwverify" was being saved but not
"password".
After adding one line (the one with the comment) to the following
function, it started working:
function change_value_pw(name, value, link, check) {
if (check) {
var pass = document.getElementById("ft_config_elem_" + link).value;
if (pass == value) {
GM_setValue('password', value); // Don't forget the password!
GM_setValue(name, value);
GM_setValue('first_config_done', true);
} else {
alert("Passwords do not match; not changed");
}
}
}
--
Jason
On 10/11/05, Randy Ray <rjray at blackperl.com> wrote:
> http://www.blackperl.com/javascript/greasemonkey/ft/
>
> * Implemented fading-out effect for window closure. Added configuration of
> length (seconds) fade-out should take to the config pane.
> * Fixed a bug in scrape_and_show() found by David Kaspar.
>
> Randy
> --
> rjray at blackperl.com http://www.rjray.org http://www.svsm.org
>
> We will never have true civilization until we have learned to recognize the
> rights of others.-- Will Rogers
> _______________________________________________
> Greasemonkey mailing list
> Greasemonkey at mozdev.org
> http://mozdev.org/mailman/listinfo/greasemonkey
>
>
More information about the Greasemonkey
mailing list