Browse Source

Add label to all checkboxes without label

Denis K 8 years ago
parent
commit
67266c3f80
1 changed files with 8 additions and 7 deletions
  1. 8 7
      jet/static/jet/js/src/features/checkboxes.js

+ 8 - 7
jet/static/jet/js/src/features/checkboxes.js

@@ -17,14 +17,15 @@ Checkboxes.prototype = {
     },
     addLabelToCheckboxes: function() {
         var self = this;
-        var $containers = $('.action-checkbox, .action-checkbox-column, .tabular.inline-related .form-row');
-        var $checkboxes = $containers
-            .find('input[type="checkbox"]')
-            .add('.checkbox-without-label')
-            .add('label > input[type="checkbox"]');
 
-        $checkboxes.each(function() {
-            self.addLabelToCheckbox($(this));
+        $('input[type="checkbox"]').each(function() {
+            var $checkbox = $(this);
+
+            if ($checkbox.attr('id') != undefined && $('label[for="' + $checkbox.attr('id') + '"').length != 0) {
+                return;
+            }
+
+            self.addLabelToCheckbox($checkbox);
         });
     },
     run: function() {