4e9d8d363e
Replaces Farbtastic. May change further in response to user testing. git-svn-id: https://develop.svn.wordpress.org/trunk@22030 602fd350-edb4-49c9-b593-d223f7449a82
24 lines
579 B
JavaScript
24 lines
579 B
JavaScript
(function($) {
|
|
|
|
$(document).ready(function() {
|
|
var bgImage = $("#custom-background-image");
|
|
|
|
$('#background-color').wpColorPicker({
|
|
change: function( event, ui ) {
|
|
bgImage.css('background-color', ui.color.toString());
|
|
},
|
|
clear: function() {
|
|
bgImage.css('background-color', '');
|
|
}
|
|
});
|
|
|
|
$('input[name="background-position-x"]').change(function() {
|
|
bgImage.css('background-position', $(this).val() + ' top');
|
|
});
|
|
|
|
$('input[name="background-repeat"]').change(function() {
|
|
bgImage.css('background-repeat', $(this).val());
|
|
});
|
|
});
|
|
|
|
})(jQuery); |