Introducing Site Icon, favicon management for WordPress.
This v1 marries Jetpack's Site Icon module with the Media Modal, reusing code
from the Custom Header admin. For now, the core-provided icons will be limited
to a favicon, an iOS app icon, and a Windows tile icon, leaving `.ico` support
and additional icons to plugins to add.
Props obenland, tyxla, flixos90, jancbeck, markjaquith, scruffian.
See #16434.
Built from https://develop.svn.wordpress.org/trunk@32994
git-svn-id: http://core.svn.wordpress.org/trunk@32965 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2015-06-29 08:58:25 -04:00
|
|
|
(function($) {
|
|
|
|
var frame;
|
|
|
|
|
|
|
|
$( function() {
|
|
|
|
// Build the choose from library frame.
|
2015-07-03 17:28:24 -04:00
|
|
|
$( '#choose-from-library-link' ).on( 'click', function( event ) {
|
Introducing Site Icon, favicon management for WordPress.
This v1 marries Jetpack's Site Icon module with the Media Modal, reusing code
from the Custom Header admin. For now, the core-provided icons will be limited
to a favicon, an iOS app icon, and a Windows tile icon, leaving `.ico` support
and additional icons to plugins to add.
Props obenland, tyxla, flixos90, jancbeck, markjaquith, scruffian.
See #16434.
Built from https://develop.svn.wordpress.org/trunk@32994
git-svn-id: http://core.svn.wordpress.org/trunk@32965 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2015-06-29 08:58:25 -04:00
|
|
|
var $el = $(this);
|
|
|
|
event.preventDefault();
|
|
|
|
|
|
|
|
// If the media frame already exists, reopen it.
|
|
|
|
if ( frame ) {
|
|
|
|
frame.open();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create the media frame.
|
2015-07-03 17:28:24 -04:00
|
|
|
frame = wp.media({
|
Introducing Site Icon, favicon management for WordPress.
This v1 marries Jetpack's Site Icon module with the Media Modal, reusing code
from the Custom Header admin. For now, the core-provided icons will be limited
to a favicon, an iOS app icon, and a Windows tile icon, leaving `.ico` support
and additional icons to plugins to add.
Props obenland, tyxla, flixos90, jancbeck, markjaquith, scruffian.
See #16434.
Built from https://develop.svn.wordpress.org/trunk@32994
git-svn-id: http://core.svn.wordpress.org/trunk@32965 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2015-06-29 08:58:25 -04: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
|
2015-07-03 17:28:24 -04:00
|
|
|
},
|
|
|
|
states: [
|
|
|
|
new wp.media.controller.Library({
|
|
|
|
title: $el.data( 'choose' ),
|
|
|
|
library: wp.media.query({ type: 'image' }),
|
|
|
|
date: false,
|
|
|
|
suggestedWidth: $el.data( 'size' ),
|
|
|
|
suggestedHeight: $el.data( 'size' )
|
|
|
|
})
|
|
|
|
]
|
Introducing Site Icon, favicon management for WordPress.
This v1 marries Jetpack's Site Icon module with the Media Modal, reusing code
from the Custom Header admin. For now, the core-provided icons will be limited
to a favicon, an iOS app icon, and a Windows tile icon, leaving `.ico` support
and additional icons to plugins to add.
Props obenland, tyxla, flixos90, jancbeck, markjaquith, scruffian.
See #16434.
Built from https://develop.svn.wordpress.org/trunk@32994
git-svn-id: http://core.svn.wordpress.org/trunk@32965 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2015-06-29 08:58:25 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
// When an image is selected, run a callback.
|
|
|
|
frame.on( 'select', function() {
|
|
|
|
// Grab the selected attachment.
|
|
|
|
var attachment = frame.state().get('selection').first(),
|
|
|
|
link = $el.data('updateLink');
|
|
|
|
|
|
|
|
// Tell the browser to navigate to the crop step.
|
|
|
|
window.location = link + '&file=' + attachment.id;
|
|
|
|
});
|
|
|
|
|
|
|
|
frame.open();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}(jQuery));
|