Skip to content

Commit

Permalink
Fullheight support in default header
Browse files Browse the repository at this point in the history
  • Loading branch information
remdex committed Sep 26, 2023
1 parent df4ee8e commit 3d9e860
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lhc_web/design/defaulttheme/js/widgetv2/react.app.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lhc_web/design/defaulttheme/js/widgetv2/react.app.js.map

Large diffs are not rendered by default.

Expand Up @@ -73,6 +73,17 @@ class HeaderChat extends Component {
{(this.props.chatwidget.hasIn(['chat_ui','img_icon_close']) && <img className="px-1" src={this.props.chatwidget.getIn(['chat_ui','img_icon_close'])} alt="" />) || <i className="material-icons">&#xf10a;</i>}
{btn.get('print') && <span className="end-chat-text">{endText}</span>}
</a>;
} else if (btn.get('btn') == 'fullheight' && !this.props.chatwidget.get('isMobile')) {
dropdownNumber++;
let fheightText = '';
if (this.props.chatwidget.get('position_placement').includes('full_height')){
fheightText = this.props.chatwidget.getIn(['chat_ui','fheight_text_class']) || t('button.fheight_text_class');
} else {
fheightText = this.props.chatwidget.getIn(['chat_ui','fheight_text_col']) || t('button.fheight_text_col');
}
return <a title={fheightText} className={"header-link float-"+position} onClick={this.switchColumn}>
{(this.props.chatwidget.hasIn(['chat_ui','img_icon_fheight']) && <img className="px-1" src={this.props.chatwidget.getIn(['chat_ui','img_icon_fheight'])} alt="" />) || (<span className="material-icons">{this.props.chatwidget.get('position_placement').includes('full_height') ? <React.Fragment>&#xf123;</React.Fragment> : <React.Fragment>&#xf126;</React.Fragment>}</span>)}
</a>;
}
});

Expand Down

0 comments on commit 3d9e860

Please sign in to comment.