diff options
| author | Mike Jacobson <[email protected]> | 2017-10-01 15:26:37 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2017-10-02 18:55:22 -0700 |
| commit | 1bde860c016b75ca0df7b684fa8a7e3ca07e18b6 (patch) | |
| tree | 0a55fe81881a6f59afab2ce8ba8d8dac28462eeb | |
| parent | b2cadc233e2df038771849fd2afe60af07f93aa1 (diff) | |
| download | bootstrap-1bde860c016b75ca0df7b684fa8a7e3ca07e18b6.tar.xz bootstrap-1bde860c016b75ca0df7b684fa8a7e3ca07e18b6.zip | |
Clarify ScrollSpy 'activate' event element
| -rw-r--r-- | docs/4.0/components/scrollspy.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/4.0/components/scrollspy.md b/docs/4.0/components/scrollspy.md index 32a86d839..b7f9e994f 100644 --- a/docs/4.0/components/scrollspy.md +++ b/docs/4.0/components/scrollspy.md @@ -316,13 +316,13 @@ Options can be passed via data attributes or JavaScript. For data attributes, ap <tbody> <tr> <td>activate.bs.scrollspy</td> - <td>This event fires whenever a new item becomes activated by the scrollspy.</td> + <td>This event fires on the scroll element whenever a new item becomes activated by the scrollspy.</td> </tr> </tbody> </table> {% highlight js %} -$('#myScrollspy').on('activate.bs.scrollspy', function () { +$('[data-spy="scroll"]').on('activate.bs.scrollspy', function () { // do something… }) {% endhighlight %} |
