|
hearing
|
Free Online Workshop Reports
Topic started 7 years 10 months ago,
by jhoefs
Last Post 7 years 8 months ago
by ShirleyLuver
Posts:1
Views:287
Last Post by ShirleyLuver
7 years 8 months ago
StartPrev1NextEnd
1
Powered by Kunena ForumBreadcrumbs
You are here: HomeForumFree Online Workshop Reports
Dialogue helper
var is_iPhone = !(!navigator.userAgent.match(/iPhone/i));
if ((/Safari/i.test(uA)) && is_iPhone) {
function fixScreenSafari(){
var testBoolean = window.matchMedia("(orientation: landscape)");
if (testBoolean) {
var viewport = document.querySelector("[name=viewport]");
viewport.setAttribute('content', 'viewport-fit=cover,width=device-width');
} else if (!testBoolean) {
var viewport = document.querySelector("[name=viewport]");
viewport.setAttribute('content', 'initial-scale=1.0, width=device-width');
}
}
jQuery(document).ready(function(){
fixScreenSafari();
});
var noChangeCountToEnd = 100,
noEndTimeout = 1000;
window
.addEventListener('orientationchange', function () {
var interval,
timeout,
end,
lastInnerWidth,
lastInnerHeight,
noChangeCount;
end = function () {
fixScreenSafari();
clearInterval(interval);
clearTimeout(timeout);
interval = null;
timeout = null;
};
interval = setInterval(function () {
if (window.innerWidth === lastInnerWidth && window.innerHeight === lastInnerHeight) {
noChangeCount++;
if (noChangeCount === noChangeCountToEnd) {
end();
}
} else {
lastInnerWidth = window.innerWidth;
lastInnerHeight = window.innerHeight;
noChangeCount = 0;
}
});
timeout = setTimeout(function () {
end();
}, noEndTimeout);
});
}
@supports (-webkit-touch-callout: none) {
@media only screen and (orientation : landscape) {
.sp-megamenu-parent {
padding-left: env(safe-area-inset-left);
}
}
@media only screen and (orientation : portrait) {
.pull-right {
width:100%;
margin-bottom:12px;
}
}
{source}
Site and content licensed under a license, and © 2022 Dr. Jonathan C. Hoefs. All Fresh Ears processes protected under HMIA™ international trademark. Front page video courtesy Andrew Styn. 241 East 17th Street #1012, Costa Mesa, CA 92627 United States
|