From 12f7101d9213f59c45a3c377e7cfa246aa0c44a6 Mon Sep 17 00:00:00 2001 From: s4m0r4m4 <8257287+s4m0r4m4@users.noreply.github.com> Date: Tue, 16 Feb 2021 06:32:23 -0600 Subject: [PATCH] docs(forms): fix link for browser compatibility of using selects in IE (#40855) Co-authored-by: Andrew Kushnir <43554145+AndrewKushnir@users.noreply.github.com> PR Close #40855 --- .../forms/src/directives/select_control_value_accessor.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/forms/src/directives/select_control_value_accessor.ts b/packages/forms/src/directives/select_control_value_accessor.ts index 7fa8b4dba9..7bad43e935 100644 --- a/packages/forms/src/directives/select_control_value_accessor.ts +++ b/packages/forms/src/directives/select_control_value_accessor.ts @@ -75,8 +75,8 @@ function _extractId(valueString: string): string { * ``` * * **Note:** We listen to the 'change' event because 'input' events aren't fired - * for selects in IE: - * https://developer.microsoft.com/en-us/microsoft-edge/platform/issues/4660045/ + * for selects in IE, see: + * https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/input_event#browser_compatibility * * @ngModule ReactiveFormsModule * @ngModule FormsModule