summaryrefslogtreecommitdiff
path: root/modules/simpletest/simpletest.js
diff options
context:
space:
mode:
Diffstat (limited to 'modules/simpletest/simpletest.js')
-rw-r--r--modules/simpletest/simpletest.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/modules/simpletest/simpletest.js b/modules/simpletest/simpletest.js
index efdc28366..9026de11b 100644
--- a/modules/simpletest/simpletest.js
+++ b/modules/simpletest/simpletest.js
@@ -1,4 +1,5 @@
// $Id$
+(function($) {
/**
* Add the cool table collapsing on the testing overview page.
@@ -76,7 +77,7 @@ Drupal.behaviors.simpleTestSelectAll = {
});
}
$(groupCheckbox).attr('checked', (checkedTests == testCheckboxes.length));
- }
+ };
// Have the single-test checkboxes follow the group checkbox.
groupCheckbox.change(function() {
@@ -99,3 +100,5 @@ Drupal.behaviors.simpleTestSelectAll = {
});
}
};
+
+})(jQuery);