Welcome to mirror list, hosted at ThFree Co, Russian Federation.

conf.import.js.php « js « views « include « php « frontends - github.com/zabbix/zabbix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7b8293c05ae189635e6548f8e54caf87ccf1a9ce (plain)
1
2
3
4
5
6
7
8
9
<script type="text/javascript">
	jQuery(function($) {
		$('#import').click(function() {
			if ($('.deleteMissing:checked').length > 0) {
				return confirm('<?php echo _('Delete all elements that are not present in the XML file?') ?>');
			}
		});
	});
</script>