Wordpress/wp-admin/js/custom-header.js

48 lines
1.0 KiB
JavaScript
Raw Normal View History

(function($) {
var frame;
$( function() {
// Fetch available headers and apply jQuery.masonry
// once the images have loaded.
var $headers = $('.available-headers');
$headers.imagesLoaded( function() {
$headers.masonry({
itemSelector: '.default-header',
isRTL: !! ( 'undefined' != typeof isRtl && isRtl )
});
});
// Build the choose from library frame.
$('#choose-from-library-link').click( function( event ) {
var $el = $(this);
event.preventDefault();
frame = wp.media({
title: $el.data('choose'),
library: {
type: 'image'
}
});
frame.on( 'toolbar:render:select', function( view ) {
view.set({
select: {
style: 'primary',
text: $el.data('update'),
click: function() {
var attachment = frame.state().get('selection').first(),
link = $el.data('updateLink');
window.location = link + '&file=' + attachment.id;
}
}
});
});
frame.setState('library').open();
});
});
}(jQuery));