mirror of
https://github.com/recloudstream/website.git
synced 2024-08-15 03:18:45 +00:00
add debug this page btn
This commit is contained in:
parent
ad2d43c34e
commit
6890abcc33
1 changed files with 11 additions and 1 deletions
|
@ -8,10 +8,20 @@ const Footer = () => (
|
||||||
<a class="link link-hover" href="https://discord.gg/5Hus6fM">Discord</a>
|
<a class="link link-hover" href="https://discord.gg/5Hus6fM">Discord</a>
|
||||||
<a class="link link-hover" href="https://matrix.to/#/#lagrapps:matrix.org">Matrix</a>
|
<a class="link link-hover" href="https://matrix.to/#/#lagrapps:matrix.org">Matrix</a>
|
||||||
<a class="link link-hover" onClick={() => {window.open("https://www.youtube.com/watch?v=f-UIBVsRSDQ")}}>DMCA</a>
|
<a class="link link-hover" onClick={() => {window.open("https://www.youtube.com/watch?v=f-UIBVsRSDQ")}}>DMCA</a>
|
||||||
|
<a class="link link-hover" onClick={() => {
|
||||||
|
if (window.eruda) {
|
||||||
|
window.eruda.show();
|
||||||
|
} else {
|
||||||
|
var script = document.createElement('script');
|
||||||
|
script.src="https://cdn.jsdelivr.net/npm/eruda";
|
||||||
|
script.onload = function () { eruda.init() }
|
||||||
|
document.body.appendChild(script);
|
||||||
|
}
|
||||||
|
}}>Debug this page</a>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<p>Website by <a className="link" href="https://github.com/c10udburst" target="_blank">Cloudburst</a></p>
|
<p>Website by <a className="link" href="https://github.com/c10udburst" target="_blank">Cloudburst</a></p>
|
||||||
</div>
|
</div>
|
||||||
</footer>)
|
</footer>)
|
||||||
|
|
||||||
export default Footer
|
export default Footer
|
||||||
|
|
Loading…
Reference in a new issue