wymeditor_filebrowser = function(wym, wdw) {
// the URL to the Django filebrowser, depends on your URLconf
var fb_url = '/admin/filebrowser/';
var dlg = jQuery(wdw.document.body);
if (dlg.hasClass('wym_dialog_image')) {
// this is an image dialog
dlg.find('.wym_src').css('width', '200px').attr('id', 'filebrowser')
.after('Filebrowser');
dlg.find('fieldset')
.append('' +
'
');
dlg.find('#fb_link')
.click(function() {
fb_window = wdw.open(fb_url + '?pop=1', 'filebrowser', 'height=600,width=840,resizable=yes,scrollbars=yes');
fb_window.focus();
return false;
});
}
}