From 7071177f3ff85d33e800a61b0c1c69e342fac61d Mon Sep 17 00:00:00 2001 From: Brian Smith Date: Fri, 7 Nov 2014 12:39:45 -0500 Subject: [PATCH] VRFS-2297 show instrument tooltips in session and recording hover bubbles --- .gitignore | 1 + web/app/assets/javascripts/hoverRecording.js | 2 +- web/app/assets/javascripts/hoverSession.js | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 19a4b038a..19f07d121 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,4 @@ HTML .DS_Store coverage dump.rdb +working.png diff --git a/web/app/assets/javascripts/hoverRecording.js b/web/app/assets/javascripts/hoverRecording.js index d58e72be5..5321df114 100644 --- a/web/app/assets/javascripts/hoverRecording.js +++ b/web/app/assets/javascripts/hoverRecording.js @@ -58,7 +58,7 @@ instrumentHtml = '
'; $.each(val.instrument_ids, function(index, val) { - instrumentHtml += '  '; + instrumentHtml += '  '; }); instrumentHtml += '
'; diff --git a/web/app/assets/javascripts/hoverSession.js b/web/app/assets/javascripts/hoverSession.js index 5ba742219..d64dfee71 100644 --- a/web/app/assets/javascripts/hoverSession.js +++ b/web/app/assets/javascripts/hoverSession.js @@ -25,7 +25,7 @@ instrumentHtml = '
'; var instruments = val.instruments.split("|"); $.each(instruments, function(index, instrument) { - instrumentHtml += ' '; + instrumentHtml += ' '; }); instrumentHtml += '
';