Skip to content

Instantly share code, notes, and snippets.

@cam5
Created June 18, 2014 15:58
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 cam5/16b9e352091d8c03881c to your computer and use it in GitHub Desktop.
Save cam5/16b9e352091d8c03881c to your computer and use it in GitHub Desktop.
Resize a dropkick.js container to fit multiline selections
$('select').dropkick({
change: function(value, label) {
var lb = $('.dk_label:contains(' + label + ')'),
ct = lb.parents('.dk_container');
ct.css('height', lb.css('height'));
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment