HTML-KickStart icon indicating copy to clipboard operation
HTML-KickStart copied to clipboard

resposive class in kickstart.js

Open FelipeAzambuja opened this issue 9 years ago • 0 comments

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(); }

FelipeAzambuja avatar Jan 29 '16 15:01 FelipeAzambuja