VRFS-2297 show instrument tooltips in session and recording hover bubbles

This commit is contained in:
Brian Smith 2014-11-07 12:39:45 -05:00
parent 0732216a0d
commit 7071177f3f
3 changed files with 3 additions and 2 deletions

1
.gitignore vendored
View File

@ -7,3 +7,4 @@ HTML
.DS_Store .DS_Store
coverage coverage
dump.rdb dump.rdb
working.png

View File

@ -58,7 +58,7 @@
instrumentHtml = '<td><div class="nowrap">'; instrumentHtml = '<td><div class="nowrap">';
$.each(val.instrument_ids, function(index, val) { $.each(val.instrument_ids, function(index, val) {
instrumentHtml += '<img src="' + context.JK.getInstrumentIcon24(val) + '" width="24" height="24" />&nbsp;&nbsp;'; instrumentHtml += '<img src="' + context.JK.getInstrumentIcon24(val) + '" title="' + val + '" width="24" height="24" />&nbsp;&nbsp;';
}); });
instrumentHtml += '</div></td>'; instrumentHtml += '</div></td>';

View File

@ -25,7 +25,7 @@
instrumentHtml = '<td><div class="nowrap">'; instrumentHtml = '<td><div class="nowrap">';
var instruments = val.instruments.split("|"); var instruments = val.instruments.split("|");
$.each(instruments, function(index, instrument) { $.each(instruments, function(index, instrument) {
instrumentHtml += '<img src="' + context.JK.getInstrumentIcon24(instrument) + '" width="24" height="24" />&nbsp;'; instrumentHtml += '<img src="' + context.JK.getInstrumentIcon24(instrument) + '" title="' + instrument + '" width="24" height="24" />&nbsp;';
}); });
instrumentHtml += '</div></td>'; instrumentHtml += '</div></td>';