2011-08-08 21:32:54 +00:00
|
|
|
$(document).ready(function(){
|
2011-08-14 14:12:27 +00:00
|
|
|
$('#openidform #identity').blur(function(event){
|
2011-08-08 21:32:54 +00:00
|
|
|
event.preventDefault();
|
2011-09-11 15:20:23 +00:00
|
|
|
OC.msg.startSaving('#openidform .msg');
|
2011-08-08 21:32:54 +00:00
|
|
|
var post = $( "#openidform" ).serialize();
|
|
|
|
$.post( 'ajax/openid.php', post, function(data){
|
2011-09-11 15:20:23 +00:00
|
|
|
OC.msg.finishedSaving('#openidform .msg', data);
|
2011-08-08 21:32:54 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|