Blame view

sources/apps/user_openid/js/settings.js 342 Bytes
42e4f8d60   Kload   add all apps
1
2
3
4
5
6
7
8
9
10
  $(document).ready(function(){
  	$('#openidform #identity').blur(function(event){
  		event.preventDefault();
  		OC.msg.startSaving('#openidform .msg');
  		var post = $( "#openidform" ).serialize();
  		$.post( OC.filePath('user_openid', 'ajax', 'openid.php'), post, function(data){
  			OC.msg.finishedSaving('#openidform .msg', data);
  		});
  	});
  });