-
Notifications
You must be signed in to change notification settings - Fork 6.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(interactivity-checker): improve robustness of isTabbable (#1950)
* fix(focus-trap): improve robustness * Address feedback * Remove extra blank line. * Address additional feedback * Change timeout delay
- Loading branch information
1 parent
76a8d79
commit 4b7e52d
Showing
12 changed files
with
449 additions
and
60 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import {Component} from '@angular/core'; | ||
import {MdPlatform} from '@angular/material'; | ||
|
||
@Component({ | ||
template: ` | ||
<p>Is Android: {{ platform.ANDROID }}</p> | ||
<p>Is iOS: {{ platform.IOS }}</p> | ||
<p>Is Firefox: {{ platform.FIREFOX }}</p> | ||
<p>Is Blink: {{ platform.BLINK }}</p> | ||
<p>Is Webkit: {{ platform.WEBKIT }}</p> | ||
<p>Is Trident: {{ platform.TRIDENT }}</p> | ||
<p>Is Edge: {{ platform.EDGE }}</p> | ||
` | ||
}) | ||
export class PlatformDemo { | ||
constructor(public platform: MdPlatform) {} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.