jQuery(function($){
var formfield;
// Image Upload Option
jQuery('.rokstories-image-upload').click(function() {
formfield = jQuery(this).attr('data-field-id');
tb_show('', 'media-upload.php?type=image&TB_iframe=true');
return false;
});
// Handles sending the image from the media uploader screen to the input field (for images)
window.original_send_to_editor = window.send_to_editor;
window.send_to_editor = function(html) {
if(formfield) {
source = jQuery(html).find('img').attr('src');
jQuery('#'+formfield).val(source);
tb_remove();
} else {
window.original_send_to_editor(html);
}
}
});
Time to create page: 0.061 seconds