settings.js 311 B

1234567891011
  1. $(document).ready(function(){
  2. $('#openidform #identity').blur(function(event){
  3. event.preventDefault();
  4. OC.msg.startSaving('#openidform .msg');
  5. var post = $( "#openidform" ).serialize();
  6. $.post( 'ajax/openid.php', post, function(data){
  7. OC.msg.finishedSaving('#openidform .msg', data);
  8. });
  9. });
  10. });