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
[
]
Right now if an attribute contains a ] character, jasmine-fixture assumes the attribute definition is complete and lops it off.
Example
affix('select[name="date[year]"]')
Will give you this HTML
<select name="date[year"></select>
The text was updated successfully, but these errors were encountered:
handle attributes that contain [ and ] (Issue searls#7)
2fc1235
Merge branch 'regex_issue' of github.com:kchien/jasmine-fixture into …
1a536b6
…kchien-regex_issue Fixes #7 Conflicts: dist/jasmine-fixture.js spec/affix-spec.coffee
Fixed by #9
Sorry, something went wrong.
No branches or pull requests
Right now if an attribute contains a
]
character, jasmine-fixture assumes the attribute definition is complete and lops it off.Example
Will give you this HTML
The text was updated successfully, but these errors were encountered: