commit/galaxy-central: carlfeberhard: scatterplot: fix column selection broken in 7002f41
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/changeset/46339150e5e1/ changeset: 46339150e5e1 user: carlfeberhard date: 2012-11-20 21:42:01 summary: scatterplot: fix column selection broken in 7002f41 affected #: 1 file diff -r 7002f41bcaa3b1a5f5023e3c2d523488812873df -r 46339150e5e134fb2eb57e4945617841e03a5a3f static/scripts/viz/scatterplot.js --- a/static/scripts/viz/scatterplot.js +++ b/static/scripts/viz/scatterplot.js @@ -939,7 +939,7 @@ var selections = {}; this.$dataSettingsPanel.find( 'div.column-select select' ).each( function(){ var $this = $( this ), - val = $this.val(); + val = parseInt( $this.val(), 10 ) - 1; selections[ $this.attr( 'name' ) ] = { colIndex : val, colName : $this.children( '[value="' + val + '"]' ).text() 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)
-
Bitbucket