/** * 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 aweaver_fillin; function aweaver_media_lib( fillarea ) { aweaver_fillin = fillarea; tb_show( '', 'media-upload.php?post_id=0&type=image&TB_iframe=true&width=800&height=600' ); return; } jQuery( document ).ready( function() { window.send_to_editor = function( html ) { imgurl = jQuery( 'img',html ).attr( 'src' ); jQuery( '#' + aweaver_fillin ).val( imgurl ); tb_remove(); jQuery( '#' + aweaver_fillin ).focus(); } } );