Close #635 - Update to jQuery 1.9.0

This commit is contained in:
Ben Word
2013-01-15 12:22:21 -06:00
parent 3b0bb0d5d8
commit 2ed9738afd
8 changed files with 14 additions and 9 deletions

View File

@@ -142,7 +142,7 @@ AddType application/x-shockwave-flash swf
# ----------------------------------------------------------------------
# e.g. Inside of script.combined.js you could have
# <!--#include file="libs/jquery-1.8.3.min.js" -->
# <!--#include file="libs/jquery.min.js" -->
# <!--#include file="plugins/jquery.idletimer.js" -->
# and they would be included into this single file.

View File

@@ -10,7 +10,7 @@
*
* Enqueue scripts in the following order:
* 1. /theme/assets/js/vendor/modernizr-2.6.2.min.js (in head.php)
* 2. jquery-1.8.2.min.js via Google CDN (in head.php)
* 2. jquery-1.9.0.min.js via Google CDN (in head.php)
* 3. /theme/assets/js/plugins.js
* 4. /theme/assets/js/main.js
*/
@@ -30,7 +30,7 @@ function roots_scripts() {
// It's kept in the header instead of footer to avoid conflicts with plugins.
if (!is_admin()) {
wp_deregister_script('jquery');
wp_register_script('jquery', '', '', '1.8.3', false);
wp_register_script('jquery', '', '', '1.9.0', false);
}
if (is_single() && comments_open() && get_option('thread_comments')) {