summaryrefslogtreecommitdiffstats
path: root/app/views/issues/bulk_edit.html.erb
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/issues/bulk_edit.html.erb')
-rw-r--r--app/views/issues/bulk_edit.html.erb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/issues/bulk_edit.html.erb b/app/views/issues/bulk_edit.html.erb
index 2b063f957..b1786dde3 100644
--- a/app/views/issues/bulk_edit.html.erb
+++ b/app/views/issues/bulk_edit.html.erb
@@ -185,7 +185,7 @@
<%= javascript_tag do %>
$(window).load(function(){
$(document).on('change', 'input[data-disables]', function(){
- if ($(this).attr('checked')){
+ if ($(this).prop('checked')){
$($(this).data('disables')).attr('disabled', true).val('');
} else {
$($(this).data('disables')).attr('disabled', false);