We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f1a2439 + 6f04c9f commit d4ad0c3Copy full SHA for d4ad0c3
src/data/examples/build_examples/example_template.ejs
@@ -54,7 +54,8 @@ slug: examples/
54
window.addEventListener('load', function() {
55
// examples.init('{{assets}}/examples/{{language}}/<%=file%>');
56
if (<%=mobileEx%>) {
57
- var isMobile = window.matchMedia("only screen and (max-width: 480px)");
+ var isMobile = window.matchMedia("only screen and (max-width: 767px)");
58
+ // isMobile is true if viewport is less than 768 pixels wide
59
document.getElementById('exampleFrame').style.display = 'none';
60
if (isMobile.matches) {
61
document.getElementById('notMobile-message').style.display = 'none';
0 commit comments