Skip to content
This repository was archived by the owner on May 29, 2019. It is now read-only.

Commit 4e60e22

Browse files
committed
docs: add tooltip and popover workaround
Closes #4535
1 parent 8c7b9e4 commit 4e60e22

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

Diff for: src/popover/docs/readme.md

+9
Original file line numberDiff line numberDiff line change
@@ -35,3 +35,12 @@ The popover directives require the `$position` service.
3535
The popover directive also supports various default configurations through the
3636
$tooltipProvider. See the [tooltip](#tooltip) section for more information.
3737

38+
**Known issues**
39+
40+
For Safari 7+ support, if you want to use **focus** `popover-trigger`, you need to use an anchor tag with a tab index. For example:
41+
42+
```
43+
<a tabindex="0" popover="Test" popover-trigger="focus" class="btn btn-default">
44+
Click Me
45+
</a>
46+
```

Diff for: src/tooltip/docs/readme.md

+9
Original file line numberDiff line numberDiff line change
@@ -66,3 +66,12 @@ methods are available:
6666
appendToBody: false
6767
</pre>
6868

69+
**Known issues**
70+
71+
For Safari 7+ support, if you want to use the **focus** `tooltip-trigger`, you need to use an anchor tag with a tab index. For example:
72+
73+
```
74+
<a tabindex="0" tooltip="Test" tooltip-trigger="focus" class="btn btn-default">
75+
Click Me
76+
</a>
77+
```

0 commit comments

Comments
 (0)