2014-10-21 18:16:00 -04:00
|
|
|
jQuery(document).ready(function($){
|
|
|
|
|
|
|
|
|
|
var custom_uploader;
|
|
|
|
|
|
|
|
|
|
$('#upload_default_image').click(function(e) {
|
|
|
|
|
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
|
|
|
|
|
//If the uploader object has already been created, reopen the dialog
|
|
|
|
|
if (custom_uploader) {
|
|
|
|
|
custom_uploader.open();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//Extend the wp.media object
|
|
|
|
|
custom_uploader = wp.media.frames.file_frame = wp.media({
|
2014-11-05 14:30:13 -05:00
|
|
|
title: ([objectL10n.text]),
|
2014-10-21 18:16:00 -04:00
|
|
|
button: {
|
2014-11-05 14:30:13 -05:00
|
|
|
text: ([objectL10n.text])
|
2014-10-21 18:16:00 -04:00
|
|
|
},
|
|
|
|
|
multiple: false
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
//When a file is selected, grab the URL and set it as the text field's value
|
|
|
|
|
custom_uploader.on('select', function() {
|
|
|
|
|
attachment = custom_uploader.state().get('selection').first().toJSON();
|
|
|
|
|
$('#default_image_url').val(attachment.url);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
//Open the uploader dialog
|
|
|
|
|
custom_uploader.open();
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
});
|