Your IP : 216.73.216.182


Current Path : /var/www/html/administrator/components/com_komento/themes/default/downloads/
Upload File :
Current File : /var/www/html/administrator/components/com_komento/themes/default/downloads/default.js

Komento.ready(function($) {

	// $('[data-mailer-list]').implement(Komento.Controller.Mailer)

	// Handle submit button.
	$.Joomla('submitbutton' , function(action) {
		
		if (action == 'purgeAll') {
			Komento.dialog({
				"content": Komento.ajax('admin/views/downloads/confirmPurgeAll'),
				"bindings": {
					"{purgeButton} click" : function() {
						Joomla.submitform([action]);
					}
				}
			});

			return false;
		}

		if (action == 'removeRequest') {
			Komento.dialog({
				"content": Komento.ajax('admin/views/downloads/removeRequest'),
				"bindings": {
					"{removeButton} click" : function() {
						Joomla.submitform([action]);
					}
				}
			});

			return false;
		}

		$.Joomla('submitform', [action]);
	});

});