Skip to content

Commit

Permalink
Changed title attribute handling
Browse files Browse the repository at this point in the history
  • Loading branch information
jsmirob committed Jan 17, 2013
1 parent 5b5ebd6 commit 4c6b3e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/JBrowse/View/Track/Alignments.js
Expand Up @@ -55,7 +55,7 @@ return declare( HTMLFeatures,
array.forEach( mismatch.bases, function( base, i ) {
dojo.create('span', {
className: 'mismatch base base_'+(base == '*' ? 'deletion' : base.toLowerCase()),
title: base == '*' ? 'deletion' : 'SNP',
title: base == '*' ? 'deletion' : null,
style: {
position: 'absolute',
left: (mismatch.start+i)/featureLength*100 + '%',
Expand Down

0 comments on commit 4c6b3e7

Please sign in to comment.