Blame view

sources/apps/user_oauth/js/admin.js 325 Bytes
42e4f8d60   Kload   add all apps
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  $(document).ready(function(){
  
  
  
  	$('#introspectionEndpoint').blur(function(event){
  		event.preventDefault();
  		var post = $( "#introspectionEndpoint" ).serialize();
  		$.post( OC.filePath('user_oauth', 'ajax', 'seturl.php') , post, function(data){
  			$('#user_oauth .msg').text('Finished saving: ' + data);
  		});
  	});
  
  
  
  });