Merge pull request #768 from phalkunz/batch-actions-disappear

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:
Sean Harvey 2012-09-03 14:31:01 -07:00
commit 3ee7bdab26

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);
}
};