1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-06-26 15:23:15 +00:00
Fixes #96
This commit is contained in:
Jeremy Ruston 2013-05-07 15:52:21 +01:00
parent dd8c8567fd
commit 6b6dbb97a8

View File

@ -384,7 +384,7 @@ $tw.utils.PasswordPrompt.prototype.createPrompt = function(options) {
// Clear the password if the callback returned false
$tw.utils.each(form.elements,function(element) {
if(element.name === "password") {
form.elements[t].value = "";
element.value = "";
}
});
}