mirror of https://github.com/vector-im/riot-web
fix naming of methods and fields
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>pull/21833/head
parent
d4578783ef
commit
aa7d62b740
|
@ -67,10 +67,10 @@ export default class ShareDialog extends React.Component {
|
||||||
super(props);
|
super(props);
|
||||||
|
|
||||||
this.onCopyClick = this.onCopyClick.bind(this);
|
this.onCopyClick = this.onCopyClick.bind(this);
|
||||||
this.onCheckboxClick = this.onCheckboxClick.bind(this);
|
this.onLinkRecentCheckboxClick = this.onLinkRecentCheckboxClick.bind(this);
|
||||||
|
|
||||||
this.state = {
|
this.state = {
|
||||||
ticked: false,
|
linkRecentTicked: false,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -116,9 +116,9 @@ export default class ShareDialog extends React.Component {
|
||||||
e.target.onmouseleave = close;
|
e.target.onmouseleave = close;
|
||||||
}
|
}
|
||||||
|
|
||||||
onCheckboxClick() {
|
onLinkRecentCheckboxClick() {
|
||||||
this.setState({
|
this.setState({
|
||||||
ticked: !this.state.ticked,
|
linkRecentTicked: !this.state.linkRecentTicked,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -135,16 +135,16 @@ export default class ShareDialog extends React.Component {
|
||||||
if (events.length > 0) {
|
if (events.length > 0) {
|
||||||
checkbox = <div>
|
checkbox = <div>
|
||||||
<input type="checkbox"
|
<input type="checkbox"
|
||||||
value={this.state.ticked}
|
value={this.state.linkRecentTicked}
|
||||||
id="mx_ShareDialog_checkbox"
|
id="mx_ShareDialog_checkbox"
|
||||||
onClick={this.onCheckboxClick} />
|
onClick={this.onLinkRecentCheckboxClick} />
|
||||||
<label htmlFor="mx_ShareDialog_checkbox">
|
<label htmlFor="mx_ShareDialog_checkbox">
|
||||||
{ _t('Link to most recent message') }
|
{ _t('Link to most recent message') }
|
||||||
</label>
|
</label>
|
||||||
</div>;
|
</div>;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (this.state.ticked) {
|
if (this.state.linkRecentTicked) {
|
||||||
matrixToUrl = makeEventPermalink(this.props.target.roomId, events[events.length - 1].getId());
|
matrixToUrl = makeEventPermalink(this.props.target.roomId, events[events.length - 1].getId());
|
||||||
} else {
|
} else {
|
||||||
matrixToUrl = makeRoomPermalink(this.props.target.roomId);
|
matrixToUrl = makeRoomPermalink(this.props.target.roomId);
|
||||||
|
|
Loading…
Reference in New Issue