Addition of tooltip behavior.
[utils] / wicket / components / src / main / java / org / wamblee / wicket / jquery / JQueryHeaderContributor.java
index 63f2f68a30a946089c591d181ec39c46283238da..216b08248976debef4692d58dba5090b1f1b50a2 100644 (file)
@@ -25,14 +25,14 @@ import org.apache.wicket.markup.html.JavascriptPackageResource;
  * JQuery header contribution that adds the jquery javascript and sets jQuery to 
  * no-conflict mode so the <code>$</code> identifier is freed. Also, it checks
  * the current configuration and uses the development mode jQuery library when run in 
- * developmemnt mode and used the minimalized jQuery code when running in deployment mode.
+ * development mode and used the minimalized jQuery code when running in deployment mode.
  * 
  * @author Erik Brakkee
  */
 public class JQueryHeaderContributor extends HeaderContributor {
 
-    static final String JQUERY_DEPLOYMENT = "jquery-1.4.2.min.js";
-    static final String JQUERY_DEVELOPMENT = "jquery-1.4.2.js";
+    static final String JQUERY_DEPLOYMENT = "jquery-1.5.min.js";
+    static final String JQUERY_DEVELOPMENT = "jquery-1.5.js";
     static final String JQUERY_NOCONFLICT = "jquery-noconflict.js";
 
     private static HeaderContributor JQUERY_CONTRIBUTOR;