nextcloud/apps/user_openid/js/settings.js

11 lines
311 B
JavaScript
Raw Normal View History

$(document).ready(function(){
2011-08-14 18:12:27 +04:00
$('#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);
});
});
});