Blame view

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