2018-06-28 04:30:15 +02:00
|
|
|
/**
|
|
|
|
* @output wp-admin/js/custom-background.js
|
|
|
|
*/
|
|
|
|
|
2013-11-14 06:40:11 +01:00
|
|
|
/* global ajaxurl */
|
2017-06-15 15:24:41 +02:00
|
|
|
|
|
|
|
/**
|
2017-12-18 15:14:53 +01:00
|
|
|
* Registers all events for customizing the background.
|
2017-06-15 15:24:41 +02:00
|
|
|
*
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
|
|
|
* @requires jQuery
|
|
|
|
*/
|
2012-08-23 02:04:18 +02:00
|
|
|
(function($) {
|
2021-03-18 20:01:03 +01:00
|
|
|
$( function() {
|
2013-11-14 06:40:11 +01:00
|
|
|
var frame,
|
|
|
|
bgImage = $( '#custom-background-image' );
|
2012-09-27 03:57:38 +02:00
|
|
|
|
2017-06-15 15:24:41 +02:00
|
|
|
/**
|
2017-12-18 15:14:53 +01:00
|
|
|
* Instantiates the WordPress color picker and binds the change and clear events.
|
2017-06-15 15:24:41 +02:00
|
|
|
*
|
|
|
|
* @since 3.5.0
|
|
|
|
*
|
2019-11-29 19:01:03 +01:00
|
|
|
* @return {void}
|
2017-06-15 15:24:41 +02:00
|
|
|
*/
|
2012-09-27 03:57:38 +02:00
|
|
|
$('#background-color').wpColorPicker({
|
|
|
|
change: function( event, ui ) {
|
|
|
|
bgImage.css('background-color', ui.color.toString());
|
|
|
|
},
|
|
|
|
clear: function() {
|
|
|
|
bgImage.css('background-color', '');
|
|
|
|
}
|
2012-08-23 02:04:18 +02:00
|
|
|
});
|
|
|
|
|
2017-06-15 15:24:41 +02:00
|
|
|
/**
|
2017-12-18 15:14:53 +01:00
|
|
|
* Alters the background size CSS property whenever the background size input has changed.
|
2017-06-15 15:24:41 +02:00
|
|
|
*
|
|
|
|
* @since 4.7.0
|
|
|
|
*
|
2019-11-29 19:01:03 +01:00
|
|
|
* @return {void}
|
2017-06-15 15:24:41 +02:00
|
|
|
*/
|
2021-02-23 20:45:04 +01:00
|
|
|
$( 'select[name="background-size"]' ).on( 'change', function() {
|
Customize: Improve custom background properties UI.
Introduces new control for managing the background position. Adds control for setting the `background-size`.
Props cdog, celloexpressions, grapplerulrich, MikeHansenMe, FolioVision, afercia, helen, melchoyce, karmatosed, westonruter, Kelderic, sebastian.pisula.
Fixes #22058.
Built from https://develop.svn.wordpress.org/trunk@38948
git-svn-id: http://core.svn.wordpress.org/trunk@38891 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2016-10-26 08:52:29 +02:00
|
|
|
bgImage.css( 'background-size', $( this ).val() );
|
2012-08-23 02:04:18 +02:00
|
|
|
});
|
|
|
|
|
2017-06-15 15:24:41 +02:00
|
|
|
/**
|
2017-12-18 15:14:53 +01:00
|
|
|
* Alters the background position CSS property whenever the background position input has changed.
|
2017-06-15 15:24:41 +02:00
|
|
|
*
|
|
|
|
* @since 4.7.0
|
|
|
|
*
|
2019-11-29 19:01:03 +01:00
|
|
|
* @return {void}
|
2017-06-15 15:24:41 +02:00
|
|
|
*/
|
2021-02-23 20:45:04 +01:00
|
|
|
$( 'input[name="background-position"]' ).on( 'change', function() {
|
Customize: Improve custom background properties UI.
Introduces new control for managing the background position. Adds control for setting the `background-size`.
Props cdog, celloexpressions, grapplerulrich, MikeHansenMe, FolioVision, afercia, helen, melchoyce, karmatosed, westonruter, Kelderic, sebastian.pisula.
Fixes #22058.
Built from https://develop.svn.wordpress.org/trunk@38948
git-svn-id: http://core.svn.wordpress.org/trunk@38891 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2016-10-26 08:52:29 +02:00
|
|
|
bgImage.css( 'background-position', $( this ).val() );
|
|
|
|
});
|
|
|
|
|
2017-06-15 15:24:41 +02:00
|
|
|
/**
|
2017-12-18 15:14:53 +01:00
|
|
|
* Alters the background repeat CSS property whenever the background repeat input has changed.
|
2017-06-15 15:24:41 +02:00
|
|
|
*
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
2019-11-29 19:01:03 +01:00
|
|
|
* @return {void}
|
2017-06-15 15:24:41 +02:00
|
|
|
*/
|
2021-02-23 20:45:04 +01:00
|
|
|
$( 'input[name="background-repeat"]' ).on( 'change', function() {
|
Customize: Improve custom background properties UI.
Introduces new control for managing the background position. Adds control for setting the `background-size`.
Props cdog, celloexpressions, grapplerulrich, MikeHansenMe, FolioVision, afercia, helen, melchoyce, karmatosed, westonruter, Kelderic, sebastian.pisula.
Fixes #22058.
Built from https://develop.svn.wordpress.org/trunk@38948
git-svn-id: http://core.svn.wordpress.org/trunk@38891 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2016-10-26 08:52:29 +02:00
|
|
|
bgImage.css( 'background-repeat', $( this ).is( ':checked' ) ? 'repeat' : 'no-repeat' );
|
|
|
|
});
|
|
|
|
|
2017-06-15 15:24:41 +02:00
|
|
|
/**
|
2017-12-18 15:14:53 +01:00
|
|
|
* Alters the background attachment CSS property whenever the background attachment input has changed.
|
2017-06-15 15:24:41 +02:00
|
|
|
*
|
|
|
|
* @since 4.7.0
|
|
|
|
*
|
2019-11-29 19:01:03 +01:00
|
|
|
* @return {void}
|
2017-06-15 15:24:41 +02:00
|
|
|
*/
|
2021-02-23 20:45:04 +01:00
|
|
|
$( 'input[name="background-attachment"]' ).on( 'change', function() {
|
Customize: Improve custom background properties UI.
Introduces new control for managing the background position. Adds control for setting the `background-size`.
Props cdog, celloexpressions, grapplerulrich, MikeHansenMe, FolioVision, afercia, helen, melchoyce, karmatosed, westonruter, Kelderic, sebastian.pisula.
Fixes #22058.
Built from https://develop.svn.wordpress.org/trunk@38948
git-svn-id: http://core.svn.wordpress.org/trunk@38891 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2016-10-26 08:52:29 +02:00
|
|
|
bgImage.css( 'background-attachment', $( this ).is( ':checked' ) ? 'scroll' : 'fixed' );
|
2012-08-23 02:04:18 +02:00
|
|
|
});
|
|
|
|
|
2017-06-15 15:24:41 +02:00
|
|
|
/**
|
2017-12-18 15:14:53 +01:00
|
|
|
* Binds the event for opening the WP Media dialog.
|
2017-06-15 15:24:41 +02:00
|
|
|
*
|
|
|
|
* @since 3.5.0
|
|
|
|
*
|
2019-11-29 19:01:03 +01:00
|
|
|
* @return {void}
|
2017-06-15 15:24:41 +02:00
|
|
|
*/
|
2021-02-23 20:45:04 +01:00
|
|
|
$('#choose-from-library-link').on( 'click', function( event ) {
|
2012-11-09 12:37:24 +01:00
|
|
|
var $el = $(this);
|
|
|
|
|
|
|
|
event.preventDefault();
|
|
|
|
|
2012-12-04 17:21:57 +01:00
|
|
|
// If the media frame already exists, reopen it.
|
2012-11-09 12:37:24 +01:00
|
|
|
if ( frame ) {
|
|
|
|
frame.open();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-12-04 17:21:57 +01:00
|
|
|
// Create the media frame.
|
2012-12-06 06:06:49 +01:00
|
|
|
frame = wp.media.frames.customBackground = wp.media({
|
2012-12-04 17:21:57 +01:00
|
|
|
// Set the title of the modal.
|
|
|
|
title: $el.data('choose'),
|
|
|
|
|
|
|
|
// Tell the modal to show only images.
|
|
|
|
library: {
|
2012-11-09 12:37:24 +01:00
|
|
|
type: 'image'
|
2012-12-04 17:21:57 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
// Customize the submit button.
|
|
|
|
button: {
|
|
|
|
// Set the text of the button.
|
|
|
|
text: $el.data('update'),
|
2017-06-15 15:24:41 +02:00
|
|
|
/*
|
|
|
|
* Tell the button not to close the modal, since we're
|
|
|
|
* going to refresh the page when the image is selected.
|
|
|
|
*/
|
2012-12-04 17:21:57 +01:00
|
|
|
close: false
|
2012-11-09 12:37:24 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2017-06-15 15:24:41 +02:00
|
|
|
/**
|
2017-12-18 15:14:53 +01:00
|
|
|
* When an image is selected, run a callback.
|
2017-06-15 15:24:41 +02:00
|
|
|
*
|
|
|
|
* @since 3.5.0
|
|
|
|
*
|
2019-11-29 19:01:03 +01:00
|
|
|
* @return {void}
|
2017-06-15 15:24:41 +02:00
|
|
|
*/
|
2012-12-04 17:21:57 +01:00
|
|
|
frame.on( 'select', function() {
|
|
|
|
// Grab the selected attachment.
|
|
|
|
var attachment = frame.state().get('selection').first();
|
2020-10-29 19:09:13 +01:00
|
|
|
var nonceValue = $( '#_wpnonce' ).val() || '';
|
2012-12-04 17:21:57 +01:00
|
|
|
|
2020-06-25 14:43:07 +02:00
|
|
|
// Run an Ajax request to set the background image.
|
2012-12-04 17:21:57 +01:00
|
|
|
$.post( ajaxurl, {
|
|
|
|
action: 'set-background-image',
|
|
|
|
attachment_id: attachment.id,
|
2020-10-29 19:09:13 +01:00
|
|
|
_ajax_nonce: nonceValue,
|
2012-12-04 17:21:57 +01:00
|
|
|
size: 'full'
|
|
|
|
}).done( function() {
|
|
|
|
// When the request completes, reload the window.
|
|
|
|
window.location.reload();
|
2012-11-09 12:37:24 +01:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2012-12-04 17:21:57 +01:00
|
|
|
// Finally, open the modal.
|
|
|
|
frame.open();
|
2012-11-09 12:37:24 +01:00
|
|
|
});
|
|
|
|
});
|
2013-11-14 06:40:11 +01:00
|
|
|
})(jQuery);
|