aboutsummaryrefslogtreecommitdiff
path: root/javascript.html
diff options
context:
space:
mode:
authorfat <[email protected]>2013-12-29 18:57:22 -0800
committerfat <[email protected]>2013-12-29 18:57:22 -0800
commit76f0d0ff32b6946dbd8c667a517a4deb69ad8890 (patch)
tree9702fead3ec0410dd4d4ead44fe447a3b782520c /javascript.html
parent162d9e1776ef55d741ffc80f8694c16c40de32ca (diff)
downloadbootstrap-76f0d0ff32b6946dbd8c667a517a4deb69ad8890.tar.xz
bootstrap-76f0d0ff32b6946dbd8c667a517a4deb69ad8890.zip
fixes #11373 - adds related target to dropdown events
Diffstat (limited to 'javascript.html')
-rw-r--r--javascript.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/javascript.html b/javascript.html
index 9c17c555e..375dcf897 100644
--- a/javascript.html
+++ b/javascript.html
@@ -570,19 +570,19 @@ $('.dropdown-toggle').dropdown()
<tbody>
<tr>
<td>show.bs.dropdown</td>
- <td>This event fires immediately when the show instance method is called.</td>
+ <td>This event fires immediately when the show instance method is called. The toggling anchor element is available as the <code>relatedTarget</code> property of the event.</td>
</tr>
<tr>
<td>shown.bs.dropdown</td>
- <td>This event is fired when the dropdown has been made visible to the user (will wait for CSS transitions, to complete).</td>
+ <td>This event is fired when the dropdown has been made visible to the user (will wait for CSS transitions, to complete). The toggling anchor element is available as the <code>relatedTarget</code> property of the event.</td>
</tr>
<tr>
<td>hide.bs.dropdown</td>
- <td>This event is fired immediately when the hide instance method has been called.</td>
+ <td>This event is fired immediately when the hide instance method has been called. The toggling anchor element is available as the <code>relatedTarget</code> property of the event.</td>
</tr>
<tr>
<td>hidden.bs.dropdown</td>
- <td>This event is fired when the dropdown has finished being hidden from the user (will wait for CSS transitions, to complete).</td>
+ <td>This event is fired when the dropdown has finished being hidden from the user (will wait for CSS transitions, to complete). The toggling anchor element is available as the <code>relatedTarget</code> property of the event.</td>
</tr>
</tbody>
</table>