diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-12-02 13:01:30 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-12-02 13:01:30 +0000 |
commit | 984138d1a523409f8b2fc84487ce21f69998de78 (patch) | |
tree | fee2758626ea626698e287b4880dd762a6d1a711 /js | |
parent | 4990faf1ebf89b8f6bda96580fede8d9b17e8872 (diff) | |
download | elgg-984138d1a523409f8b2fc84487ce21f69998de78.tar.gz elgg-984138d1a523409f8b2fc84487ce21f69998de78.tar.bz2 |
rough implementation of Evan's page layout
git-svn-id: http://code.elgg.org/elgg/trunk@7496 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'js')
-rw-r--r-- | js/lib/ui.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/lib/ui.js b/js/lib/ui.js index 01e6b6589..a9315883f 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-messages li').live('click', function() {
$(this).stop().fadeOut('fast');
});
|