/home/crealab/riscatto.brainware.com.co/wp-content/plugins/sg-cachepress/assets/js/admin.js
/*global ajaxurl*/
;(function( $ ) {
	$(document).ready(function() {
		// Switch to default dashboard.
		$('.dismiss-memcache-notice').on('click', function(e) {
			let $this = $(this);
			$.ajax(
				$this.data('link')
			)
			.success(function() {
				$this.parents('.notice-error').remove()
			})

		})
	})
})( jQuery )