1 new commit in galaxy-central:
https://bitbucket.org/galaxy/galaxy-central/commits/c78a4a3d51cd/ Changeset: c78a4a3d51cd User: jmchilton Date: 2014-05-06 17:08:39 Summary: Merged in jmchilton/galaxy-central-fork-1 (pull request #379)
Disable select2 for all multi-select inputs. Affected #: 1 file
diff -r 09f80fcdfd85bf1b009b9c831e51fa92a6ff9306 -r c78a4a3d51cdcd99754822d479798ed324ed9655 static/scripts/galaxy.base.js --- a/static/scripts/galaxy.base.js +++ b/static/scripts/galaxy.base.js @@ -261,7 +261,7 @@ select_elts = select_elts || $('select');
select_elts.each( function() { - var select_elt = $(this); + var select_elt = $(this).not('[multiple]'); // Make sure that options is within range. var num_options = select_elt.find('option').length; if ( (num_options < min_length) || (num_options > max_length) ) {
Repository URL: https://bitbucket.org/galaxy/galaxy-central/
--
This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email.
galaxy-commits@lists.galaxyproject.org