ACC SHELL
/* Theme Options
================================================================ */
$(document).ready(function() {
/* Remember options */
if(!$('html').hasClass('ie9')) {
$(window).bind('unload', function() {
$('input[type=checkbox]').each(function() {
localStorage.setItem(
'radio_' + this.id, JSON.stringify({checked: this.checked})
);
});
});
}
$('body').addClass('fixed-header');
}); // End document.ready
$(window).load(function(){
$('body').addClass('fixed-header');
}); // End window.load
ACC SHELL 2018