2012-08-23 02:04:18 +02:00
|
|
|
(function($) {
|
|
|
|
$(document).ready(function() {
|
2012-11-09 12:37:24 +01:00
|
|
|
var bgImage = $("#custom-background-image"),
|
|
|
|
frame;
|
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
|
|
|
});
|
|
|
|
|
|
|
|
$('input[name="background-position-x"]').change(function() {
|
2012-09-27 03:57:38 +02:00
|
|
|
bgImage.css('background-position', $(this).val() + ' top');
|
2012-08-23 02:04:18 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
$('input[name="background-repeat"]').change(function() {
|
2012-09-27 03:57:38 +02:00
|
|
|
bgImage.css('background-repeat', $(this).val());
|
2012-08-23 02:04:18 +02:00
|
|
|
});
|
|
|
|
|
2012-11-09 12:37:24 +01:00
|
|
|
$('#choose-from-library-link').click( function( event ) {
|
|
|
|
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'),
|
|
|
|
// Tell the button not to close the modal, since we're
|
|
|
|
// going to refresh the page when the image is selected.
|
|
|
|
close: false
|
2012-11-09 12:37:24 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2012-12-04 17:21:57 +01:00
|
|
|
// When an image is selected, run a callback.
|
|
|
|
frame.on( 'select', function() {
|
|
|
|
// Grab the selected attachment.
|
|
|
|
var attachment = frame.state().get('selection').first();
|
|
|
|
|
|
|
|
// Run an AJAX request to set the background image.
|
|
|
|
$.post( ajaxurl, {
|
|
|
|
action: 'set-background-image',
|
|
|
|
attachment_id: attachment.id,
|
|
|
|
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
|
|
|
});
|
|
|
|
});
|
2012-08-23 02:04:18 +02:00
|
|
|
})(jQuery);
|