0
0
mirror of https://github.com/Doodle3D/doodle3d-connect.git synced 2024-06-30 18:31:22 +02:00

Update password on auto complete

This commit is contained in:
peteruithoven 2014-05-07 17:43:02 +02:00
parent 00f03553db
commit 2c38778ca2

View File

@ -97,6 +97,10 @@
});
$clone.bind('change', function() {
update( $clone , $input)
});
// Added for JQuery Validation compatibility
// This will trigger validation if it's ON for blur event
$clone.bind('blur', function() { $input.trigger('focusout'); });