summaryrefslogtreecommitdiff
path: root/modules/user/user.js
diff options
context:
space:
mode:
Diffstat (limited to 'modules/user/user.js')
-rw-r--r--modules/user/user.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/modules/user/user.js b/modules/user/user.js
index 926a92137..0d3727a66 100644
--- a/modules/user/user.js
+++ b/modules/user/user.js
@@ -1,4 +1,5 @@
// $Id$
+(function($) {
/**
* Attach handlers to evaluate the strength of any password fields and to check
@@ -76,7 +77,7 @@ Drupal.behaviors.password = {
else {
confirmResult.css({ visibility: "hidden" });
}
- }
+ };
// Monitor keyup and blur events.
// Blur must be used because a mouse paste does not trigger keyup.
@@ -171,3 +172,5 @@ Drupal.behaviors.userSettings = {
});
}
};
+
+})(jQuery);