diff options
| author | Jacob Thornton <[email protected]> | 2012-02-07 21:55:27 -0800 |
|---|---|---|
| committer | Jacob Thornton <[email protected]> | 2012-02-07 21:55:27 -0800 |
| commit | 139a07754303e1e53b34a0fca3b9c0a43ee5712b (patch) | |
| tree | ae12a4522c92f8cbd36320300cab42bc31a2ad73 /js/bootstrap-button.js | |
| parent | 11f72f6aa22c9d2daa9a95846e6c786afd7bc3e1 (diff) | |
| download | bootstrap-139a07754303e1e53b34a0fca3b9c0a43ee5712b.tar.xz bootstrap-139a07754303e1e53b34a0fca3b9c0a43ee5712b.zip | |
don't use e.target incase button has icon or other content inside it
Diffstat (limited to 'js/bootstrap-button.js')
| -rw-r--r-- | js/bootstrap-button.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/bootstrap-button.js b/js/bootstrap-button.js index d85c82947..a3f4657e8 100644 --- a/js/bootstrap-button.js +++ b/js/bootstrap-button.js @@ -91,7 +91,7 @@ $(function () { $('body').on('click.button.data-api', '[data-toggle^=button]', function ( e ) { - $(e.target).button('toggle') + $(e.currentTarget).button('toggle') }) }) |
