We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
For the same BEMJSON for b-page block we have different results
b-page
{ elem : 'css', url : '10-simple', ie : true }
For desktop:
<!--[if gt IE 9]><!--><link rel="stylesheet" href="_10-simple.css"/><!--<![endif]--> <!--[if IE 6]><link rel="stylesheet" href="_10-simple.ie6.css"/><![endif]--> <!--[if IE 7]><link rel="stylesheet" href="_10-simple.ie7.css"/><![endif]--> <!--[if IE 8]><link rel="stylesheet" href="_10-simple.ie8.css"/><![endif]--> <!--[if IE 9]><link rel="stylesheet" href="_10-simple.ie9.css"/><![endif]-->
For touch:
<!--[if gte IE 9]><link rel="stylesheet" href="_10-simple"/><![endif]-->
Note that we lost .css suffix on the touch level
.css
The text was updated successfully, but these errors were encountered:
@narqo should it be fixed in major release or i can add something like indexOf('.css') > 0 as fallback and release patch version?
indexOf('.css') > 0
Sorry, something went wrong.
I don't mind if this would be fixed in minor release. But since nobody cares, one could wait for a major release without hacks :)
@narqo If there's nobody who's affected let's postpone it till major release
@tadatuta @narqo welcome to BEM-2125 :)
No branches or pull requests
For the same BEMJSON for
b-page
block we have different resultsFor desktop:
For touch:
<!--[if gte IE 9]><link rel="stylesheet" href="_10-simple"/><![endif]-->
Note that we lost
.css
suffix on the touch levelThe text was updated successfully, but these errors were encountered: