diff options
| author | Jacob Thornton <[email protected]> | 2012-06-02 17:30:00 -0700 |
|---|---|---|
| committer | Jacob Thornton <[email protected]> | 2012-06-02 17:30:00 -0700 |
| commit | fc96bc8bba0687fb5845bffc72eb048535583499 (patch) | |
| tree | 5d958eee1a7734b4345ccbebc8ce416e39801241 /docs/assets/js/bootstrap.js | |
| parent | 5b401a8c16bf54aad4df38790d20f05bfea03822 (diff) | |
| download | bootstrap-fc96bc8bba0687fb5845bffc72eb048535583499.tar.xz bootstrap-fc96bc8bba0687fb5845bffc72eb048535583499.zip | |
rebuild doi
Diffstat (limited to 'docs/assets/js/bootstrap.js')
| -rw-r--r-- | docs/assets/js/bootstrap.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/assets/js/bootstrap.js b/docs/assets/js/bootstrap.js index 187b4f620..1f0ae30e4 100644 --- a/docs/assets/js/bootstrap.js +++ b/docs/assets/js/bootstrap.js @@ -556,13 +556,13 @@ * ==================== */ $(function () { - $('body').on('click.collapse.data-api', '[data-toggle=collapse]', function ( e ) { + $('body').on('click.collapse.data-api', '[data-toggle=collapse]', function (e) { var $this = $(this), href , target = $this.attr('data-target') || e.preventDefault() || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '') //strip for ie7 , option = $(target).data('collapse') ? 'toggle' : $this.data() - $this[$(target).hasClass('in') ? 'removeClass' : 'addClass']('show') + $this[$(target).hasClass('in') ? 'addClass' : 'removeClass']('collapsed') $(target).collapse(option) }) }) |
