aboutsummaryrefslogtreecommitdiff
path: root/js/lib/ui.js
diff options
context:
space:
mode:
authorcash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-12-02 03:29:06 +0000
committercash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-12-02 03:29:06 +0000
commitab36344d8e480b7c1b053130f2afc19ed2cf9e6c (patch)
tree71a4c5b7233593cbd781738e932db35370f4771a /js/lib/ui.js
parent4d80bc33b8924038bd1ca57d548828afe661bb42 (diff)
downloadelgg-ab36344d8e480b7c1b053130f2afc19ed2cf9e6c.tar.gz
elgg-ab36344d8e480b7c1b053130f2afc19ed2cf9e6c.tar.bz2
Refs #2700 fixed the widget code with the new CSS element names
git-svn-id: http://code.elgg.org/elgg/trunk@7494 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'js/lib/ui.js')
-rw-r--r--js/lib/ui.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/lib/ui.js b/js/lib/ui.js
index c079abda2..01e6b6589 100644
--- a/js/lib/ui.js
+++ b/js/lib/ui.js
@@ -2,7 +2,7 @@ elgg.provide('elgg.ui');
elgg.ui.init = function () {
//if the user clicks a system message, make it disappear
- $('.elgg_system_message').live('click', function() {
+ $('.elgg-system-message').live('click', function() {
$(this).stop().fadeOut('fast');
});