feat(selector): support , for multiple targets

Fixes #867
Closes #1019
This commit is contained in:
Marc Laval
2015-03-19 17:01:42 +01:00
parent 0fb9f3bd6c
commit 41b53e71e1
6 changed files with 172 additions and 87 deletions

View File

@ -248,7 +248,7 @@ export class Directive extends Injectable {
* - `[attribute]`: select by attribute name.
* - `[attribute=value]`: select by attribute name and value.
* - `:not(sub_selector)`: select only if the element does not match the `sub_selector`.
* - `selector1, selector2`: select if either `selector1` or `selector2` matches. [TO BE IMPLMENTED]
* - `selector1, selector2`: select if either `selector1` or `selector2` matches.
*
*
* ## Example