From 56c204685da5e0030d36ded91ab5357a00d20877 Mon Sep 17 00:00:00 2001 From: Mike Francis Date: Fri, 6 Feb 2015 10:18:21 +0000 Subject: [PATCH] Update FontAwesome and jQuery --- functions.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/functions.php b/functions.php index 7c0a770..c3abeaf 100644 --- a/functions.php +++ b/functions.php @@ -41,10 +41,10 @@ function barebones_scripts() { * For IE8 to play nice, you'll need to include your CSS here, for example: * * wp_enqueue_style( 'fonts', '//fonts.googleapis.com/css?family=Font+Family' ); - * wp_enqueue_style( 'icons', '//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css' ); + * wp_enqueue_style( 'icons', '//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css' ); */ wp_deregister_script( 'jquery' ); - wp_register_script( 'jquery', '//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js', false, '1.11.1', true ); + wp_register_script( 'jquery', '//ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js', false, '1.11.2', true ); wp_enqueue_script( 'jquery' ); wp_enqueue_script( 'script', get_stylesheet_directory_uri() . '/js/script.min.js', array( 'jquery' ), null, true ); }