Function ngModelAriaDirective
- ngModelAriaDirective($aria): {
priority: number;
require: string;
restrict: string;
compile(elem: any, attr: any): {
post(scope: any, elem: any, attr: any, ngModel: any): void;
};
} Returns {
priority: number;
require: string;
restrict: string;
compile(elem: any, attr: any): {
post(scope: any, elem: any, attr: any, ngModel: any): void;
};
}
priority: number
require: string
restrict: string
compile:function
- compile(elem, attr): {
post(scope: any, elem: any, attr: any, ngModel: any): void;
} Returns {
post(scope: any, elem: any, attr: any, ngModel: any): void;
}
post:function
- post(scope, elem, attr, ngModel): void
Parameters
- scope: any
- elem: any
- attr: any
- ngModel: any
Returns void
Properties