aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-server
diff options
context:
space:
mode:
authorFabrice Bellingard <bellingard@gmail.com>2012-07-04 10:49:21 +0200
committerFabrice Bellingard <bellingard@gmail.com>2012-07-04 10:49:21 +0200
commit382c4f4164053c2f3b2c859615f73f3076b14904 (patch)
treef038b49a08c6b0a85acf610e1f5824c5a414f49b /sonar-server
parentfa4998240092288ac95a7919dd50c60bbee09da4 (diff)
downloadsonarqube-382c4f4164053c2f3b2c859615f73f3076b14904.tar.gz
sonarqube-382c4f4164053c2f3b2c859615f73f3076b14904.zip
SONAR-2614 Missing semi-colon
Diffstat (limited to 'sonar-server')
-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 80ce6a6f31d..9c02bd9027f 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
@@ -77,7 +77,7 @@
<script>
function selectOrDeselect() {
- status = $('r-all').checked
+ status = $('r-all').checked;
$$('tbody input').each(function(input) {
input.checked = status;
});