You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Create facilities to find <link … type="text/scss"> elements, download them and run them through Sass.compile(). Provide an importer callback to resolve nested @imports, possibly using URI.absoluteTo().
Taking the demo at #2 (comment) into account. You should be able to read @import directive from source:
scssCode = xmlhttp.responseText;
If scssCode contain any @import "..." then find the URI and call read(uri) recursive. You still have to solve the asynchronism issues, but you dont need a modified version of sass.js
Taking over from medialize/sass.js#28:
Create facilities to find
<link … type="text/scss"
> elements, download them and run them throughSass.compile()
. Provide an importer callback to resolve nested@import
s, possibly using URI.absoluteTo().There is an initial attempt to make this work.
The text was updated successfully, but these errors were encountered: