Your IP : 216.73.216.182


Current Path : /var/www/html/media/kunena/core/js/
Upload File :
Current File : /var/www/html/media/kunena/core/js/localstorage.js

jQuery(document).ready(function ($) {
	/* To hide or open collapse localStorage */
	$('.collapse').on('hidden', function () {
		if (this.id) {
			if (this.id !== 'search') {
				localStorage[this.id] = 'true';
			}
		}
	}).on('shown', function () {
		if (this.id) {
			localStorage.removeItem(this.id);
		}
	}).each(function () {
		if (this.id && localStorage[this.id] === 'true') {
			$(this).collapse('hide');
		}
	});
});