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

JSBreakpointModule: add document.readyState checks #5495

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 15 additions & 10 deletions Source/Blazorise/wwwroot/breakpoint.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,17 @@
const breakpointComponents = [];
let lastBreakpoint = null;

// Recalculate breakpoint on resize
if (window.attachEvent) {
window.attachEvent('onresize', windowResized);
}
else if (window.addEventListener) {
window.addEventListener('resize', windowResized, true);
}
else {
//The browser does not support Javascript event binding
if (document.readyState === 'interactive' || document.readyState === 'complete') {
David-Moreira marked this conversation as resolved.
Show resolved Hide resolved
// Recalculate breakpoint on resize
if (window.attachEvent) {
window.attachEvent('onresize', windowResized);
}
else if (window.addEventListener) {
window.addEventListener('resize', windowResized, true);
stsrki marked this conversation as resolved.
Show resolved Hide resolved
}
else {
//The browser does not support Javascript event binding
}
}

function windowResized() {
Expand All @@ -34,7 +36,10 @@ lastBreakpoint = getBreakpoint();

// Get the current breakpoint
export function getBreakpoint() {
return window.getComputedStyle(document.body, ':before').content.replace(/\"/g, '');
if (document.readyState === 'interactive' || document.readyState === 'complete') {
return window.getComputedStyle(document.body, ':before').content.replace(/\"/g, '');
}
return "";
}

export function addBreakpointComponent(elementId, dotnetAdapter) {
Expand Down
Loading