aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-server
diff options
context:
space:
mode:
authorstephenbroyer <stephen.broyer@sonarsource.com>2013-09-20 10:14:39 +0200
committerstephenbroyer <stephen.broyer@sonarsource.com>2013-09-20 10:38:35 +0200
commitd964c3f8e3950f5ee63f0cffb92a82e683b0203d (patch)
treef878c262352249a86f0ed2e77d35c68963e6581f /sonar-server
parentefbf56c4d6ed5c354ea000f914db069c819aca74 (diff)
downloadsonarqube-d964c3f8e3950f5ee63f0cffb92a82e683b0203d.tar.gz
sonarqube-d964c3f8e3950f5ee63f0cffb92a82e683b0203d.zip
SONAR-4665 Remove prototypejs from drilldown & components pages (drilldown issues)
Diffstat (limited to 'sonar-server')
-rw-r--r--sonar-server/src/main/webapp/WEB-INF/app/views/drilldown/issues.html.erb4
1 files changed, 2 insertions, 2 deletions
diff --git a/sonar-server/src/main/webapp/WEB-INF/app/views/drilldown/issues.html.erb b/sonar-server/src/main/webapp/WEB-INF/app/views/drilldown/issues.html.erb
index 8ce2520890d..1a69136f60b 100644
--- a/sonar-server/src/main/webapp/WEB-INF/app/views/drilldown/issues.html.erb
+++ b/sonar-server/src/main/webapp/WEB-INF/app/views/drilldown/issues.html.erb
@@ -181,11 +181,11 @@
%>
<script>
- $$('#col_rules tr.selected').each(function (item) {
+ $j('#col_rules tr.selected').each(function (index,item) {
item.scrollIntoView(true);
});
<% for i in 0...@drilldown.columns.size do %>
- $$('#col_<%= i -%> tr.selected').each(function (item) {
+ $j('#col_<%= i -%> tr.selected').each(function (index,item) {
item.scrollIntoView(true);
});
<% end %>