diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-12-02 03:29:06 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-12-02 03:29:06 +0000 |
commit | ab36344d8e480b7c1b053130f2afc19ed2cf9e6c (patch) | |
tree | 71a4c5b7233593cbd781738e932db35370f4771a /views/default/js | |
parent | 4d80bc33b8924038bd1ca57d548828afe661bb42 (diff) | |
download | elgg-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 'views/default/js')
-rw-r--r-- | views/default/js/initialise_elgg.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/views/default/js/initialise_elgg.php b/views/default/js/initialise_elgg.php index 5157bb8bc..0db4b88bb 100644 --- a/views/default/js/initialise_elgg.php +++ b/views/default/js/initialise_elgg.php @@ -145,14 +145,14 @@ $(document).ready(function () { } }); - elgg-system-message(); + elgg_system_message(); }); /* end document ready function */ // display & hide elgg system messages -function elgg-system-message() { +function elgg_system_message() { $("#elgg-system-message").animate({opacity: 0.9}, 1000); $("#elgg-system-message").animate({opacity: 0.9}, 5000); $("#elgg-system-message").fadeOut('slow'); |