All Downloads are FREE. Search and download functionalities are using the official Maven repository.

static.js.admin.systemproperties.edit.js Maven / Gradle / Ivy


$(document).ready(function() {
	
	$('.saveproperty').submit(function(event) {
		postRequest($(this), "/api/properties/save", "", "", function(data) {
		});
		return false;
	});
	
	$('.deleteproperty').submit(function(event) {
		postRequest($(this), "/api/properties/delete", "", "", function(data) {
			$("#deletepropertybutton").hide();
		});
		return false;
	});	
});




© 2015 - 2024 Weber Informatics LLC | Privacy Policy