Skip to content

Commit

Permalink
jQuery update
Browse files Browse the repository at this point in the history
  • Loading branch information
FlashJunior authored and Patrick Lauber committed Feb 3, 2010
1 parent ce0774a commit 8cc508f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cms/templates/cms/toolbar/toolbar.html
Expand Up @@ -374,7 +374,7 @@
// '$' variable, so store a reference of it in a temporary variable...
var _$ = window.$;
if (typeof jQuery == 'undefined') {
var jquery_url = 'http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js';
var jquery_url = 'http://ajax.googleapis.com/ajax/libs/jquery/1.4.0/jquery.min.js';
document.write(unescape('%3Cscript src="' + jquery_url + '" type="text/javascript"%3E%3C/script%3E'));
}
//]]>
Expand Down

1 comment on commit 8cc508f

@beniwohli
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why 1.4.0? 1.4.1 is out already. If you use "1.4" as version identifier, you always get the newest release from the 1.4 branch, "1" gives you the newest jQuery period. Until jQuery 2.0, that is :)

Please sign in to comment.