Robust Client-Side JavaScript
molily.de
Robust Client-Side JavaScript
1–10 of 12 posts
Re: Robust Client-Side JavaScript
#2Re: Robust Client-Side JavaScript
#3The document itself could be made more readable by choosing to break lines at word boundaries, not in the middle of words.
Re: Robust Client-Side JavaScript
#4It's good to have a comprehensive document like this. The document itself could be made more readable by choosing to break lines at word boundaries, not in the middle of words.
What browser are you using? I see none of this happening, and looking at the source code, it's just blocks of text in `
`, so you might try getting a browser with a better text reflow engine, or tweaking options on your current one.
Re: Robust Client-Side JavaScript
#5It's good to have a comprehensive document like this. The document itself could be made more readable by choosing to break lines at word boundaries, not in the middle of words.
> The document itself could be made more readable by choosing to break lines at word boundaries, not in the middle of words. What browser are you using? I see none of this happening, and looking at the source code, it's just blocks of text in ` `, so you might try getting a browser with a better text reflow engine, or tweaking options on your current one.
html { overflow-wrap: break-word; }
which could be causing this at certain screen-sizes.Re: Robust Client-Side JavaScript
#6Earlier quoted context omitted.
> The document itself could be made more readable by choosing to break lines at word boundaries, not in the middle of words. What browser are you using? I see none of this happening, and looking at the source code, it's just blocks of text in ` `, so you might try getting a browser with a better text reflow engine, or tweaking options on your current one.
The site has the following rule in their CSS: html { overflow-wrap: break-word; } which could be causing this at certain screen-sizes.
Re: Robust Client-Side JavaScript
#7It's good to have a comprehensive document like this. The document itself could be made more readable by choosing to break lines at word boundaries, not in the middle of words.
> The document itself could be made more readable by choosing to break lines at word boundaries, not in the middle of words. What browser are you using? I see none of this happening, and looking at the source code, it's just blocks of text in ` `, so you might try getting a browser with a better text reflow engine, or tweaking options on your current one.
overflow-wrap: break-word;
But it's not clear what's triggering itRe: Robust Client-Side JavaScript
#8Earlier quoted context omitted.
> The document itself could be made more readable by choosing to break lines at word boundaries, not in the middle of words. What browser are you using? I see none of this happening, and looking at the source code, it's just blocks of text in ` `, so you might try getting a browser with a better text reflow engine, or tweaking options on your current one.
The page is styled to overflow-wrap: break-word; But it's not clear what's triggering it