Created
April 3, 2015 15:29
-
-
Save iaian/33bd3dbb8b497bd1e5ac to your computer and use it in GitHub Desktop.
banks-show-mobile-cart.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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