summaryrefslogtreecommitdiff
path: root/modules/simpletest/simpletest.js
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2009-04-26 19:18:46 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2009-04-26 19:18:46 +0000
commitbda52632a5aa033d44151c224a39236b223c6b0e (patch)
treeda56b8095f58963707655312071d41de95adca84 /modules/simpletest/simpletest.js
parenta4dc8467bbe69ba984be31309f536af74dc64e73 (diff)
downloadbrdo-bda52632a5aa033d44151c224a39236b223c6b0e.tar.gz
brdo-bda52632a5aa033d44151c224a39236b223c6b0e.tar.bz2
#444402 by kkaefer and RobLoach: Enforce coding standards on all core JavaScript.
Diffstat (limited to 'modules/simpletest/simpletest.js')
-rw-r--r--modules/simpletest/simpletest.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/simpletest/simpletest.js b/modules/simpletest/simpletest.js
index 06fb70f30..91912599f 100644
--- a/modules/simpletest/simpletest.js
+++ b/modules/simpletest/simpletest.js
@@ -83,7 +83,7 @@ Drupal.behaviors.simpleTestSelectAll = {
groupCheckbox.change(function() {
var checked = !!($(this).attr('checked'));
for (var i = 0; i < testCheckboxes.length; i++) {
- $('#'+ testCheckboxes[i]).attr('checked', checked);
+ $('#' + testCheckboxes[i]).attr('checked', checked);
}
});