如何绑定到新的Wordpress 3.5媒体管理器的加载完成

时间:2013-02-18 19:28:53

标签: wordpress media uploader wordpress-3.5

我需要修改新的Wordpress 3.5媒体管理器的输出,它已经加载了所有项目以便在库和图库视图中浏览,但我不能在我的生活中找到一个我可以绑定到的事件。

是否有人知道在加载所有图像或类似的东西时是否触发了'wpMediaEditorLoaded'事件?

1 个答案:

答案 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
       }