summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFabrice Bellingard <bellingard@gmail.com>2012-07-05 11:52:50 +0200
committerFabrice Bellingard <bellingard@gmail.com>2012-07-05 11:55:47 +0200
commitd317fbde0e7df9159515f3f9f62246dac11e0f39 (patch)
tree7861d85609f4748594459d9758c70a2c25425484
parent0269bb49efbbad8d4375122400cf47042d283457 (diff)
downloadsonarqube-d317fbde0e7df9159515f3f9f62246dac11e0f39.tar.gz
sonarqube-d317fbde0e7df9159515f3f9f62246dac11e0f39.zip
SONAR-2614 Fix issue on Chrome
-rw-r--r--sonar-server/src/main/webapp/WEB-INF/app/views/bulk_deletion/index.html.erb6
1 files changed, 3 insertions, 3 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 9c02bd9027f..164815d19f2 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;
+ var status = $('r-all').checked;
$$('tbody input').each(function(input) {
input.checked = status;
});
@@ -102,12 +102,12 @@
function selectAllResources() {
$('all_resources').value = '<%= found_resources_ids -%>';
- $('select_all_action').text = '<%= message('bulk_deletion.clear_selection', :params => found_resources_count) -%>';
+ $('select_all_action').innerHTML = '<%= message('bulk_deletion.clear_selection', :params => found_resources_count) -%>';
}
function selectNotAllResources() {
$('all_resources').value = '';
- $('select_all_action').text = '<%= message('bulk_deletion.select_all_x_resources', :params => found_resources_count) -%>';
+ $('select_all_action').innerHTML = '<%= message('bulk_deletion.select_all_x_resources', :params => found_resources_count) -%>';
}
</script>