A directive that adds a CSS class when a uiSref is active.
uiSref
This directive should be paired with a UiSref, and is used to apply a CSS class to the element when the state that the uiSref targets is active.
[uiSrefActive]
[uiSrefActiveEq]
uiSrefActive
uiSrefActiveEq
<a uiSref="foo" uiSrefActive="active">Foo</a> <a uiSref="foo.bar" [uiParams]="{ id: bar.id }" uiSrefActive="active">Foo Bar #</a>
Generated using TypeDoc
A directive that adds a CSS class when a
uiSref
is active.Purpose
This directive should be paired with a UiSref, and is used to apply a CSS class to the element when the state that the
uiSref
targets is active.Selectors
[uiSrefActive]
: When this selector is used, the class is added when the target state or any child of the target state is active[uiSrefActiveEq]
: When this selector is used, the class is added when the target state is directly activeInputs
uiSrefActive
/uiSrefActiveEq
: one or more CSS classes to add to the element, when active<a uiSref="foo" uiSrefActive="active">Foo</a> <a uiSref="foo.bar" [uiParams]="{ id: bar.id }" uiSrefActive="active">Foo Bar #</a>