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

Commit

Permalink
docs: add tooltip and popover workaround
Browse files Browse the repository at this point in the history
Closes #4535
  • Loading branch information
Foxandxss committed Oct 5, 2015
1 parent 8c7b9e4 commit 4e60e22
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/popover/docs/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,12 @@ The popover directives require the `$position` service.
The popover directive also supports various default configurations through the
$tooltipProvider. See the [tooltip](#tooltip) section for more information.

**Known issues**

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:

```
<a tabindex="0" popover="Test" popover-trigger="focus" class="btn btn-default">
Click Me
</a>
```
9 changes: 9 additions & 0 deletions src/tooltip/docs/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,3 +66,12 @@ methods are available:
appendToBody: false
</pre>

**Known issues**

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:

```
<a tabindex="0" tooltip="Test" tooltip-trigger="focus" class="btn btn-default">
Click Me
</a>
```

0 comments on commit 4e60e22

Please sign in to comment.