: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in
: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in
import { domElements } from '../constants/selectors';
export default class ThickBoxModal {
openTriggerSelector: string;
openTriggerSelector: string,
this.openTriggerSelector = openTriggerSelector;
this.inlineContentId = inlineContentId;
this.windowCssClass = windowCssClass;
this.contentCssClass = contentCssClass;
$(openTriggerSelector).on('click', this.init.bind(this));
//@ts-expect-error global
//@ts-expect-error global
`#TB_inline?inlineId=${this.inlineContentId}&modal=true`
// thickbox doesn't respect the width and height url parameters https://core.trac.wordpress.org/ticket/17249
// We override thickboxes css with !important in the css
$(domElements.thickboxModalWindow).addClass(this.windowCssClass);
// have to modify the css of the thickbox content container as well
$(domElements.thickboxModalContent).addClass(this.contentCssClass);
// we unbind previous handlers because a thickbox modal is a single global object.
// Everytime it is re-opened, it still has old handlers bound
$(domElements.thickboxModalClose)
.on('click', this.close);