Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

resposive class in kickstart.js #79

Open
FelipeAzambuja opened this issue Jan 29, 2016 · 0 comments
Open

resposive class in kickstart.js #79

FelipeAzambuja opened this issue Jan 29, 2016 · 0 comments

Comments

@FelipeAzambuja
Copy link

Add this code to work
var w = $(document).width();
if (w > 1024) {
$(".show-desktop").show();
$(".hide-desktop").hide();
} else if (w > 768 && w < 1024) {
$(".show-tablet").show();
$(".hide-tablet").hide();
} else if (w < 768) {
$(".show-phone").show();
$(".hide-phone").hide();
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant