Skip to content

Instantly share code, notes, and snippets.

@iaian
Created April 3, 2015 15:29
Show Gist options
  • Save iaian/33bd3dbb8b497bd1e5ac to your computer and use it in GitHub Desktop.
Save iaian/33bd3dbb8b497bd1e5ac to your computer and use it in GitHub Desktop.
banks-show-mobile-cart.js
function showMobileCart() {
var isMobile = $(window).width() < 768 ? true : false,
isNavOpen = $('#mainMenu').hasClass('in');
if (isMobile && !isNavOpen) {
$('.navbar-toggle').click();
setTimeout(function() {
$('#dropDown-cart').click();
}, 400);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment