mirror of
https://github.com/status-im/tmp.git
synced 2026-08-27 11:21:11 +00:00
48 lines
1016 B
HTML
48 lines
1016 B
HTML
<html>
|
|
<head>
|
|
<title>Channel List</title>
|
|
<style> a { display: block; }</style>
|
|
</head>
|
|
<body>
|
|
<h1>Status Channels</h1>
|
|
<div class='chans'>
|
|
#ethereum
|
|
#status
|
|
#status-bounties
|
|
#status-core-devs
|
|
#status-desktop
|
|
#status-core-dapps
|
|
#status-peopleops
|
|
#status-marketing
|
|
#status-core-chat
|
|
#status-desktop
|
|
#statusphere
|
|
#watercooler
|
|
#ethdenver
|
|
#teambuilding
|
|
#project-coworkers
|
|
#316-core-network-incentives
|
|
#313-sticker-market
|
|
#314-tribute-to-talk
|
|
#317-dapp-store
|
|
#321-teller-network
|
|
</div>
|
|
<script>
|
|
var div = document.getElementsByClassName('chans')[0],
|
|
list = div.innerHTML;
|
|
div.innerHTML = '';
|
|
list = list.split('\n');
|
|
for (var i in list) {
|
|
chan = list[i].trim();
|
|
if (chan) {
|
|
link = document.createElement('a');
|
|
link.text = chan;
|
|
link.setAttribute('href', ' https://get.status.im/chat/public/'+chan.substr(1));
|
|
div.appendChild(link);
|
|
console.log(chan);
|
|
}
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|