js file needed to reference jQuery instead of just $

This commit is contained in:
tworrall 2013-10-15 10:27:31 -04:00
parent e33070b3a8
commit dfc3163ac1

View file

@ -5,7 +5,7 @@ $(document).ready(function(){
// Use jQuery() instead of $() alias, because dwr/util.js, loaded on back end editing // Use jQuery() instead of $() alias, because dwr/util.js, loaded on back end editing
// pages, overwrites $. // pages, overwrites $.
// fade out welcome-message when user logs in // fade out welcome-message when user logs in
$.extend(this, i18nStrings); jQuery.extend(this, i18nStrings);
jQuery('section#welcome-message').css('display', 'block').delay(2000).fadeOut(1500); jQuery('section#welcome-message').css('display', 'block').delay(2000).fadeOut(1500);