Joe Pagan
Joe Pagan
This should be in the docs imo as people will not realise it's not w3c valid in this way (obviously should be checking anyway), but: lozad.js will overwrite an existing...
Turns out you can get w3c errors still if you use the `data-srcset` attribute and an accompanying `sizes` attribute... sigh >The sizes attribute may be specified only if the srcset...
Hah, just fixed with: ```js const observer = lozad('.lozad', { loaded: (el) => { el.setAttribute('sizes', el.dataset.sizes); el.removeAttribute('data-sizes'); }, }); ``` Should be built in though, if you can do the...
Well, what I suggested is just a temp work around, I think lozad should deal with this really. Maybe a more suitable fix is to leave the sizes attribute on...
Still getting this myself, npm installs to a directory `node_modules/scrollmagic`, however @koole solutions doesn't work for me as `node_modules/ScrollMagic` does not exist and errors out: ``` 3:1 error 'ScrollMagic' should...
@egarofalo as this was some time ago the project I was working on needed to be completed, I abandoned working with this package because of these issues in favor of...
I think animate is built in to compass now so you shouldn't even need this? Nevertheless, this was the main reason I moved to bourbon. They have similar mixins and...
@kisenka I think just a note at the top of this repo's readme would be best. Thanks for your work on this tool.
In the past I have had issues where `.svg` files contain: ```
@imthatcarlos nope, my temp fix was to node9-ify my app. Luckily there wasn't too much to do in my case. For you it looks like you'd be downgrading though! Specifically...