mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-05 18:32:23 +01:00
Thickbox: do .triggerHandler() instead of .trigger(), props duck_, fixes #19189
git-svn-id: http://svn.automattic.com/wordpress/trunk@19264 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
cc2232068a
commit
ac807f00fb
@ -275,7 +275,10 @@ function tb_showIframe(){
|
|||||||
function tb_remove() {
|
function tb_remove() {
|
||||||
jQuery("#TB_imageOff").unbind("click");
|
jQuery("#TB_imageOff").unbind("click");
|
||||||
jQuery("#TB_closeWindowButton").unbind("click");
|
jQuery("#TB_closeWindowButton").unbind("click");
|
||||||
jQuery("#TB_window").fadeOut("fast",function(){jQuery('#TB_window,#TB_overlay,#TB_HideSelect').trigger("unload").unbind().remove();});
|
jQuery("#TB_window").fadeOut("fast",function(){ // see #19189
|
||||||
|
jQuery(this).triggerHandler("unload");
|
||||||
|
jQuery('#TB_window,#TB_overlay,#TB_HideSelect').unbind().remove();
|
||||||
|
});
|
||||||
jQuery("#TB_load").remove();
|
jQuery("#TB_load").remove();
|
||||||
if (typeof document.body.style.maxHeight == "undefined") {//if IE 6
|
if (typeof document.body.style.maxHeight == "undefined") {//if IE 6
|
||||||
jQuery("body","html").css({height: "auto", width: "auto"});
|
jQuery("body","html").css({height: "auto", width: "auto"});
|
||||||
|
Loading…
Reference in New Issue
Block a user