From d171579ea984aeb9ba13d7bc87df716d35f89c73 Mon Sep 17 00:00:00 2001 From: stephenbroyer Date: Wed, 18 Sep 2013 16:56:34 +0200 Subject: [PATCH] SONAR-4614 Remove prototypejs from dashboards --- .../main/webapp/WEB-INF/app/views/dashboard/configure.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sonar-server/src/main/webapp/WEB-INF/app/views/dashboard/configure.html.erb b/sonar-server/src/main/webapp/WEB-INF/app/views/dashboard/configure.html.erb index 9ffb899f05e..40e31dbd718 100644 --- a/sonar-server/src/main/webapp/WEB-INF/app/views/dashboard/configure.html.erb +++ b/sonar-server/src/main/webapp/WEB-INF/app/views/dashboard/configure.html.erb @@ -93,7 +93,7 @@ function filtersWidgetsByContent(text) { var userInput = text.toLowerCase(); widgetContents.each(function (widget) { - var element = $(widget.id); + var element = $j('#'+widget.id); if (element != null) { if (widget.c.indexOf(userInput) != -1) { element.show(); -- 2.39.5