mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 12:05:37 +00:00
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:
parent
540f23842f
commit
a0462b90cf
@ -33,7 +33,11 @@ jQuery.noConflict();
|
|||||||
el.siblings('.chzn-container').prop('title', title);
|
el.siblings('.chzn-container').prop('title', title);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
setTimeout(function() { applyChosen(el); }, 500);
|
setTimeout(function() {
|
||||||
|
// Make sure it's visible before applying the ui
|
||||||
|
el.show();
|
||||||
|
applyChosen(el); },
|
||||||
|
500);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user