diff options
author | stephenbroyer <stephen.broyer@sonarsource.com> | 2013-09-20 10:14:39 +0200 |
---|---|---|
committer | stephenbroyer <stephen.broyer@sonarsource.com> | 2013-09-20 10:38:35 +0200 |
commit | d964c3f8e3950f5ee63f0cffb92a82e683b0203d (patch) | |
tree | f878c262352249a86f0ed2e77d35c68963e6581f /sonar-server | |
parent | efbf56c4d6ed5c354ea000f914db069c819aca74 (diff) | |
download | sonarqube-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.erb | 4 |
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 %> |