Update GBMarkdownPlayer.js
This commit is contained in:
parent
bd77b1c3ac
commit
415bcf3097
1 changed files with 4 additions and 4 deletions
|
@ -119,16 +119,16 @@ class GBMarkdownPlayer extends Component {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (this.state.prevId) {
|
if (this.state.prevId) {
|
||||||
prev = <a style={{ color: 'blue', cursor: 'pointer' }} href={"#"}
|
prev = <button style={{ color: 'blue', cursor: 'pointer' }}
|
||||||
onClick={() => this.sendAnswer(this.state.prevId)}>
|
onClick={() => this.sendAnswer(this.state.prevId)}>
|
||||||
Back
|
Back
|
||||||
</a>
|
</button>
|
||||||
}
|
}
|
||||||
if (this.state.nextId) {
|
if (this.state.nextId) {
|
||||||
next = <a style={{ color: 'blue', cursor: 'pointer' }} href={"#"}
|
next = <button style={{ color: 'blue', cursor: 'pointer' }}
|
||||||
onClick={() => this.sendAnswer(this.state.nextId)}>
|
onClick={() => this.sendAnswer(this.state.nextId)}>
|
||||||
Next
|
Next
|
||||||
</a>
|
</button>
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
|
Loading…
Add table
Reference in a new issue