diff options
author | Anthony G. Basile <blueness@gentoo.org> | 2020-01-06 14:32:30 -0500 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2020-01-06 14:32:30 -0500 |
commit | 10ef81bf85ad0a4bad0d204838e14c99ca2526f7 (patch) | |
tree | b4bb36a326d41de12d1a6181d2a2baf34696ac24 /plugins/jetpack/modules/widgets/gallery.php | |
parent | Updating script for Update (diff) | |
download | blogs-gentoo-10ef81bf85ad0a4bad0d204838e14c99ca2526f7.tar.gz blogs-gentoo-10ef81bf85ad0a4bad0d204838e14c99ca2526f7.tar.bz2 blogs-gentoo-10ef81bf85ad0a4bad0d204838e14c99ca2526f7.zip |
Update jetpack 8.0
Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
Diffstat (limited to 'plugins/jetpack/modules/widgets/gallery.php')
-rw-r--r-- | plugins/jetpack/modules/widgets/gallery.php | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/plugins/jetpack/modules/widgets/gallery.php b/plugins/jetpack/modules/widgets/gallery.php index 8cb24d01..aa631e62 100644 --- a/plugins/jetpack/modules/widgets/gallery.php +++ b/plugins/jetpack/modules/widgets/gallery.php @@ -5,9 +5,11 @@ Plugin Name: Gallery Description: Gallery widget Author: Automattic Inc. Version: 1.0 -Author URI: http://automattic.com +Author URI: https://automattic.com */ +use Automattic\Jetpack\Assets; + class Jetpack_Gallery_Widget extends WP_Widget { const THUMB_SIZE = 45; const DEFAULT_WIDTH = 265; @@ -400,7 +402,7 @@ class Jetpack_Gallery_Widget extends WP_Widget { public function enqueue_frontend_scripts() { wp_register_script( 'gallery-widget', - Jetpack::get_file_url_for_environment( + Assets::get_file_url_for_environment( '_inc/build/widgets/gallery/js/gallery.min.js', 'modules/widgets/gallery/js/gallery.js' ) @@ -417,7 +419,7 @@ class Jetpack_Gallery_Widget extends WP_Widget { wp_enqueue_script( 'gallery-widget-admin', - Jetpack::get_file_url_for_environment( + Assets::get_file_url_for_environment( '_inc/build/widgets/gallery/js/admin.min.js', 'modules/widgets/gallery/js/admin.js' ), |