• Parameters

    • $state: any

    Returns {
        $stateful: boolean;
        (state: any, params: any, options: any): any;
    }

      • (state, params, options): any
      • Parameters

        • state: any
        • params: any
        • options: any

        Returns any

    • $stateful: boolean

Properties

Properties

$inject: string[]

includedByState Filter: truthy if the current state includes the parameter

Translates to [[StateService.includes]] $state.is("fullOrPartialStateName").

<div ng-if="'fullOrPartialStateName' | includedByState">show if state includes 'fullOrPartialStateName'</div>