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
We found a problem when parsing the following tag with angular expression in the attribute:
%li(ng-repeat="pager in paging.pagers" ng-class=" paging.pagination.current_page === pager ? 'active' : '' ")
Somehow, it's generated as:
<li class="paging.pagination.current_page === pager ? ng-scope" ng-repeat="pager in paging.pagers" ng-active'="" "=""></li>
While the expected behavior is this:
<li ng-repeat="pager in paging.pagers" ng-class=" paging.pagination.current_page === pager ? 'active' : '' " class="ng-scope"></li>
Would really appreciate if it can be fixed. Thank you. :)
The text was updated successfully, but these errors were encountered:
I'll take a look this weekend and get back to you.
Sorry, something went wrong.
No branches or pull requests
We found a problem when parsing the following tag with angular expression in the attribute:
Somehow, it's generated as:
While the expected behavior is this:
Would really appreciate if it can be fixed. Thank you. :)
The text was updated successfully, but these errors were encountered: