Skip to content

Instantly share code, notes, and snippets.

@zirosas
Created April 2, 2014 02:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zirosas/9926792 to your computer and use it in GitHub Desktop.
Save zirosas/9926792 to your computer and use it in GitHub Desktop.
$( document.body ).on( 'click', '.dropdown-menu li', function( event ) {
var $target = $( event.currentTarget );
$target.closest( '.btn-group' )
.find( '[data-bind="label"]' ).text( $target.text() )
.end()
.children( '.dropdown-toggle' ).dropdown( 'toggle' );
return false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment