mirror of
https://github.com/nextcloud/server.git
synced 2026-02-12 07:14:44 -05:00
10 lines
311 B
JavaScript
10 lines
311 B
JavaScript
$(document).ready(function(){
|
|
$('#openidform #identity').blur(function(event){
|
|
event.preventDefault();
|
|
OC.msg.startSaving('#openidform .msg');
|
|
var post = $( "#openidform" ).serialize();
|
|
$.post( 'ajax/openid.php', post, function(data){
|
|
OC.msg.finishedSaving('#openidform .msg', data);
|
|
});
|
|
});
|
|
});
|