Changeset 254

Show
Ignore:
Timestamp:
05/27/07 17:40:57
Author:
danfreak
Message:

"changed flash.js in order to avoid conflicts with ther Javascript libraries"

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • FreakAuth/trunk/www/public/js/flash.js

    r2 r254  
    1 $(document).ready(function() { 
    2         $("#flashMessage").show("normal", 
    3                 function() 
    4                 { 
    5                         $("#flashMessage").fadeOut(10000);  
    6                 } 
    7                 ); 
    8 }); 
     1jQuery.noConflict(); 
     2jQuery(document).ready(function($) { 
     3    $("#flashMessage").show("normal", 
     4        function() 
     5        { 
     6            $("#flashMessage").fadeOut(10000); 
     7        } 
     8        ); 
     9});