diff options
| author | Heinrich Fenkart <[email protected]> | 2014-04-04 02:46:19 +0200 |
|---|---|---|
| committer | Heinrich Fenkart <[email protected]> | 2014-04-04 02:46:19 +0200 |
| commit | b94306d29bd4de8b16c81c39d7e6a639320a5284 (patch) | |
| tree | 2e98584d13698c08b5198d13e34f3f9890aadb66 /docs/_includes | |
| parent | 8ca182876debea1eb28c983606267b2bf9aa585d (diff) | |
| download | bootstrap-b94306d29bd4de8b16c81c39d7e6a639320a5284.tar.xz bootstrap-b94306d29bd4de8b16c81c39d7e6a639320a5284.zip | |
Replace $.fn.bind with $.fn.on in alert docs
Diffstat (limited to 'docs/_includes')
| -rw-r--r-- | docs/_includes/js/alerts.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/_includes/js/alerts.html b/docs/_includes/js/alerts.html index 04bbd43cf..de2ae9b84 100644 --- a/docs/_includes/js/alerts.html +++ b/docs/_includes/js/alerts.html @@ -64,7 +64,7 @@ </table> </div><!-- /.table-responsive --> {% highlight js %} -$('#my-alert').bind('closed.bs.alert', function () { +$('#my-alert').on('closed.bs.alert', function () { // do something… }) {% endhighlight %} |
