Private
Public Access
1
0

clipboard - not working #8

This commit is contained in:
2016-11-19 16:37:08 +01:00
parent 47627edca8
commit a1de5ae0c8
5 changed files with 77 additions and 2 deletions

View File

@@ -85,7 +85,17 @@ class MineSeeker extends React.Component {
overlay: true,
overlayTitle: "We are waiting for your opponent...",
overlaySubTitle: this.state.gameAssoc
? <a href={"/play/" + this.state.gameAssoc} target="_blank">Play w/ me!</a>
?
<div>
<div className="clippy">
<input id="foo"
defaultValue={window.location.href + '/' + this.state.gameAssoc}/>
<button className="btn">
<img src="/bundles/mineseeker/images/clippy.svg" alt="Copy to clipboard"/>
</button>
</div>
<a href={"/play/" + this.state.gameAssoc} target="_blank">Play w/ me!</a>
</div>
: '',
renderGridFields: this.state.gameAssoc
});