VRFS-2297 show instrument tooltips in session and recording hover bubbles
This commit is contained in:
parent
0732216a0d
commit
7071177f3f
|
|
@ -7,3 +7,4 @@ HTML
|
||||||
.DS_Store
|
.DS_Store
|
||||||
coverage
|
coverage
|
||||||
dump.rdb
|
dump.rdb
|
||||||
|
working.png
|
||||||
|
|
|
||||||
|
|
@ -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" /> ';
|
instrumentHtml += '<img src="' + context.JK.getInstrumentIcon24(val) + '" title="' + val + '" width="24" height="24" /> ';
|
||||||
});
|
});
|
||||||
instrumentHtml += '</div></td>';
|
instrumentHtml += '</div></td>';
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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" /> ';
|
instrumentHtml += '<img src="' + context.JK.getInstrumentIcon24(instrument) + '" title="' + instrument + '" width="24" height="24" /> ';
|
||||||
});
|
});
|
||||||
|
|
||||||
instrumentHtml += '</div></td>';
|
instrumentHtml += '</div></td>';
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue