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

static.snapadmin.js.console.js Maven / Gradle / Ivy

There is a newer version: 0.2.1
Show newest version
document.addEventListener("DOMContentLoaded", () => {
	document.querySelector("#console-delete-btn").addEventListener("click", () => {
		if (confirm("Are you sure you want to delete this query?")) {
			document.querySelector("#console-delete-form").submit();
		}
	});

	if (document.querySelector("nav select.page-size") != null) {
		document.querySelectorAll("nav select.page-size").forEach(e => {
			e.addEventListener('change', function(e) {
				console.log(e.target.parentElement);
				e.target.parentElement.submit();
			});
		});
	}


});




© 2015 - 2025 Weber Informatics LLC | Privacy Policy