/** * media-lib.js, JavaScript specialized open WP thickbox media uploader * * @version 1.1 * @license GNU Lesser General Public License, http://www.gnu.org/copyleft/lesser.html * @author Bruce Wampler */ var aspen_fillin; function aspen_media_lib(fillarea) { aspen_fillin = fillarea; tb_show('', 'media-upload.php?post_id=0&type=image&TB_iframe=true&width=640&height=600'); return; } jQuery(document).ready(function() { window.send_to_editor = function(html) { imgurl = jQuery('img',html).attr('src'); jQuery('#' + aspen_fillin).val(imgurl); tb_remove(); jQuery('#' + aspen_fillin).focus(); } });