Newer
Older
WebMCR / upload / install / theme / js / global.js
@Qexy.org Qexy.org on 27 Mar 2017 185 bytes Update 1.4.1
$(function(){
	$('body').on('click', '.notify > .close', function(e){
		e.preventDefault();

		$(this).closest('.notify').fadeOut('fast', function(){
			$(this).remove();
		});
	});
});