Formatting fixes

This commit is contained in:
Michael Thomas 2021-12-23 21:41:43 +00:00
parent c90f945430
commit 037fe88a3d
1 changed files with 21 additions and 21 deletions

View File

@ -9,9 +9,9 @@ class SelectDialog extends React.Component {
super( props );
this.state = {
isOpen: false
};
isOpen: false,
};
}
componentDidMount() {
window.addEventListener( 'message', this.handlePostMessage, false );
@ -34,12 +34,12 @@ class SelectDialog extends React.Component {
</Button>
{ this.state.isOpen && (
<Modal title="Cognito Forms Embed" className="cognito-modal" onRequestClose={ () => this.setState( { isOpen: false } ) } shouldCloseOnClickOutside={ false }>
<FocusableIframe style={{ width: "500px", height: "500px" }} src="/wp-content/plugins/cognitoforms/testing/dialog.html"></FocusableIframe>
<FocusableIframe style={ { width: '500px', height: '500px' } } src="/wp-content/plugins/cognitoforms/testing/dialog.html"></FocusableIframe>
</Modal>
) }
</div>
);
};
};
}
}
export default SelectDialog
export default SelectDialog;