From e01409a0fb720eccf0659e1f33d4308afa5668da Mon Sep 17 00:00:00 2001 From: Brian Smith Date: Tue, 15 Apr 2014 00:48:48 -0400 Subject: [PATCH] VRFS-1530 added missing semicolon (not sure if this will fix issue or not - unable to reproduce) --- web/app/assets/javascripts/hoverRecording.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/app/assets/javascripts/hoverRecording.js b/web/app/assets/javascripts/hoverRecording.js index 20a5b3994..3555b626e 100644 --- a/web/app/assets/javascripts/hoverRecording.js +++ b/web/app/assets/javascripts/hoverRecording.js @@ -73,7 +73,7 @@ instrumentHtml = '
'; $.each(val.instrument_ids, function(index, val) { instrumentHtml += '  '; - }) + }); instrumentHtml += '
'; musicianHtml += instrumentHtml;