Your IP : 216.73.217.112


Current Path : /home/zieirix/www/administrator/components/com_faqbookpro/assets/js/
Upload File :
Current File : /home/zieirix/www/administrator/components/com_faqbookpro/assets/js/dashboard.js

(function( $ ) {
	'use strict';

	$(function() {

		checkForUpdate('auto');

    $('#check-version').on('click', function(event) {
      $('#update-box').remove();
      $('#check-version').find('.fa').addClass('fa-spin');
      checkForUpdate('check');
    });

	});

	function checkForUpdate(type)
	{
    $.ajax({
      type : 'GET',
      url : 'index.php?option=com_faqbookpro&task=checkForUpdate&type='+type,
      success: function(response) {
        $('.minitek-dashboard').prepend(response);
        $('#check-version').find('.fa').removeClass('fa-spin');
      },
      error: function(XMLHttpRequest, textStatus, errorThrown) {
        console.log(errorThrown);
      }
    });
	}

})( jQuery );