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