| Current Path : /home/helpink/www/media/astroid/js/mod_astroid_clear_cache/ |
| Current File : /home/helpink/www/media/astroid/js/mod_astroid_clear_cache/script.js |
jQuery(function($){
$('.astroid-clear-cache').on('click', function (e){
e.preventDefault();
var $this = $(this);
$.ajax({
url: "index.php?option=com_ajax&astroid=clear-cache",
beforeSend: function(){
$this.find('.icon-refresh').addClass('icon-spin');
},
success: function (response) {
if (response.status === 'success') {
$.notify(Joomla.JText._('MOD_ASTROID_SYSTEM_MESSAGES_CACHE'), "success");
$.ajax({
url: "index.php?option=com_ajax&astroid=clear-joomla-cache",
success: function (response) {
if (response.status === 'success') {
$.notify(Joomla.JText._('MOD_ASTROID_MESSAGE_JOOMLA_CACHE'), "success");
$this.find('.icon-refresh').removeClass('icon-spin');
}
}
});
}
}
});
});
});