BUG Fixes an issue where batch actions dropdown doesn't show up after ajax request back to the cms Pages section

This commit is contained in:
Saophalkun Ponlu 2012-09-03 18:47:25 +12:00
parent 540f23842f
commit a0462b90cf

View File

@ -33,7 +33,11 @@ jQuery.noConflict();
el.siblings('.chzn-container').prop('title', title);
}
} else {
setTimeout(function() { applyChosen(el); }, 500);
setTimeout(function() {
// Make sure it's visible before applying the ui
el.show();
applyChosen(el); },
500);
}
};