mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
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:
commit
3ee7bdab26
@ -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);
|
||||
}
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user