summaryrefslogtreecommitdiffstats
path: root/sonar-server/src/main
diff options
context:
space:
mode:
authorstephenbroyer <stephen.broyer@sonarsource.com>2013-09-23 12:33:47 +0200
committerstephenbroyer <stephen.broyer@sonarsource.com>2013-09-23 14:56:56 +0200
commitbcd296664338144b833b4b012b6783ca9a9ee208 (patch)
tree69845a291938c99527e83ac9356782a8c72a0b14 /sonar-server/src/main
parentcadc9dcae0907f31844b9f4f019af85432e387ae (diff)
downloadsonarqube-bcd296664338144b833b4b012b6783ca9a9ee208.tar.gz
sonarqube-bcd296664338144b833b4b012b6783ca9a9ee208.zip
SONAR-4673 Remove prototypejs from "System" administration console
(ONLY function checkBeforedeleting() line 85)
Diffstat (limited to 'sonar-server/src/main')
-rw-r--r--sonar-server/src/main/webapp/WEB-INF/app/views/bulk_deletion/index.html.erb2
1 files changed, 1 insertions, 1 deletions
diff --git a/sonar-server/src/main/webapp/WEB-INF/app/views/bulk_deletion/index.html.erb b/sonar-server/src/main/webapp/WEB-INF/app/views/bulk_deletion/index.html.erb
index 0eace53985e..71f8d5cc7c3 100644
--- a/sonar-server/src/main/webapp/WEB-INF/app/views/bulk_deletion/index.html.erb
+++ b/sonar-server/src/main/webapp/WEB-INF/app/views/bulk_deletion/index.html.erb
@@ -84,7 +84,7 @@
<script>
function checkBeforeDeleting() {
var resource_selected = false;
- $$("#resources-to-delete input[type='checkbox']").each(function(input) {
+ $j("#resources-to-delete input[type='checkbox']").each(function(index,input) {
if (input.checked) resource_selected = true;
});
if (!resource_selected) {