From 9f77d81bb6090d30d9114141dfa4843ef77d8c58 Mon Sep 17 00:00:00 2001 From: Mike Francis Date: Mon, 7 Jul 2014 16:50:01 +0100 Subject: [PATCH] Updated CDN ver of jQuery to 1.11.1 --- functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions.php b/functions.php index 2c155ff..4c29bff 100644 --- a/functions.php +++ b/functions.php @@ -33,7 +33,7 @@ function theme_scripts() { // wp_enqueue_style( 'fonts', '//fonts.googleapis.com/css?family=Font+Family:Weight' ); // wp_enqueue_style( 'icons', '//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css' ); wp_deregister_script( 'jquery' ); - wp_register_script( 'jquery', '//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js', false, '1.10.2', true ); + wp_register_script( 'jquery', '//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js', false, '1.11.1', true ); wp_enqueue_script( 'jquery' ); wp_enqueue_script( 'script', get_stylesheet_directory_uri() . '/script.js', array( 'jquery' ), null, true ); }