From 2ccd9b46dd27619795b27b693398e12426bacca5 Mon Sep 17 00:00:00 2001 From: Dominik Schilling Date: Sat, 13 Aug 2016 19:28:29 +0000 Subject: [PATCH] About Page: Enhance responsive images. * Add `srcset` and `sizes` to the mobile image for streamlined updates. * Modify the order of image candidate strings in each `srcset` to address a bug in iOS8 where the first candidate will always be selected when using `w` descriptors, see #35030. Props joemcgill. Fixes #37246. Built from https://develop.svn.wordpress.org/trunk@38257 git-svn-id: http://core.svn.wordpress.org/trunk@38198 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/about.php | 10 +++++----- wp-includes/version.php | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/wp-admin/about.php b/wp-admin/about.php index 6ab38db27d..f1702f4cd0 100644 --- a/wp-admin/about.php +++ b/wp-admin/about.php @@ -76,7 +76,7 @@ include( ABSPATH . 'wp-admin/admin-header.php' ); echo wp_video_shortcode( array( 'mp4' => 'https://cldup.com/5ho0rKdXXe.mp4', 'webm' => 'https://cldup.com/VdSgwAtHNX.webm', - 'poster' => 'https://cldup.com/c0kfjoVcFo.png', + 'poster' => 'https://cldup.com/gqVj6h0cdN.png', 'loop' => true, 'autoplay' => true, 'width' => 1050, @@ -85,7 +85,7 @@ include( ABSPATH . 'wp-admin/admin-header.php' ); ) ); remove_filter( 'wp_video_shortcode', '_wp_override_admin_video_width_limit' ); } else { - echo ''; + echo ''; } ?> @@ -95,7 +95,7 @@ include( ABSPATH . 'wp-admin/admin-header.php' );

- +

@@ -103,7 +103,7 @@ include( ABSPATH . 'wp-admin/admin-header.php' );

- +

- +

diff --git a/wp-includes/version.php b/wp-includes/version.php index 2d73fe581d..7b7c6b6573 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.7-alpha-38255'; +$wp_version = '4.7-alpha-38257'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.