</div>
<script>
jQuery(function($){
+ var firstLoad = localStorage.getItem("firstLoad");
$(document).on("click", ".enews-handle", function(){
$("#glm-enews-sticky").toggleClass("enews-slideout");
});
- if (window.matchMedia("(min-width: 641px)").matches) {
+ console.log(firstLoad)
+ if (window.matchMedia("(min-width: 641px)").matches && !firstLoad) {
$("#glm-enews-sticky").toggleClass('enews-slideout');
+ localStorage.setItem("firstLoad", true);
// $("#glm-enews-sticky").fadeIn("slow");
}
$(document).on("click", ".close-enews", function(){