From 93de3d8aa9a66e82db26261017cffe0a4c1eec88 Mon Sep 17 00:00:00 2001 From: nac26 Date: Thu, 3 Feb 2011 16:06:07 +0000 Subject: [PATCH] NIHVIVO-1073 Small change to message displayed when no individuals are found for requested letter in alphabet --- webapp/web/js/menupage/browseByVClass.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webapp/web/js/menupage/browseByVClass.js b/webapp/web/js/menupage/browseByVClass.js index 03ce3f2c9..acc2034a3 100644 --- a/webapp/web/js/menupage/browseByVClass.js +++ b/webapp/web/js/menupage/browseByVClass.js @@ -233,7 +233,7 @@ var browseByVClass = { this.wipeSlate(); this.selectedAlpha(alpha); - nothingToSeeHere = '

There are no '+ vclass.name +' individuals whose name starts with '+ alpha +'.

Please try another letter or browse all '+ vclass.name +' individuals.

'; + nothingToSeeHere = '

There are no '+ vclass.name +' individuals whose name starts with '+ alpha.toUpperCase() +'.

Please try another letter or browse all.

'; browseByVClass.individualsContainer.prepend(nothingToSeeHere); } };