commit/galaxy-central: guerler: Upload: Modify selection rule
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/30a9490f9bf6/ Changeset: 30a9490f9bf6 User: guerler Date: 2013-11-20 04:55:20 Summary: Upload: Modify selection rule Affected #: 1 file diff -r b042f0fac1abe5bace4ae32e93595a453b99d9de -r 30a9490f9bf6ce4a18f8a7e7974f5e70651c7ba6 static/scripts/galaxy.upload.js --- a/static/scripts/galaxy.upload.js +++ b/static/scripts/galaxy.upload.js @@ -174,8 +174,9 @@ items.each(function() { var symbol = $(this).find('#symbol'); - if(symbol.hasClass(self.state.init)) { - $(this).find('#genome').val(selected_genome); + var genome = $(this).find('#genome'); + if(symbol.hasClass(self.state.init) && genome.val() == '?') { + genome.val(selected_genome); } }); }); 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.
participants (1)
-
commits-noreply@bitbucket.org