我需要修改新的Wordpress 3.5媒体管理器的输出,它已经加载了所有项目以便在库和图库视图中浏览,但我不能在我的生活中找到一个我可以绑定到的事件。
是否有人知道在加载所有图像或类似的东西时是否触发了'wpMediaEditorLoaded'事件?
答案 0 :(得分:0)
我发现我可以使用这个
wp.media.view.Attachments.prototype.on('ready',function(){
//this runs once for each tab in the media editor so unbind previous versions
jQuery(document).unbind('ajaxComplete', mediaLibraryLoaded);
jQuery(document).bind('ajaxComplete', mediaLibraryLoaded);
});
var mediaLibraryLoaded = function(e, xhr, options) {
jQuery(document).unbind('ajaxComplete', mediaLibraryLoaded);
//do stuff here
}