Added index.html with kumu.io embed iframe + limit option

This commit is contained in:
dig 2018-07-26 23:49:01 +02:00
parent 5ead27b005
commit 39fde62570
2 changed files with 7 additions and 2 deletions

View File

@ -1,5 +1,6 @@
import {
delayR // call a function with a random delay
args
, delayR // call a function with a random delay
, log // console.log in .map or .then
, concat // concat for reduce: [[1,2],3,[4],[5,6]].reduce(concat,[]) > [1,2,3,4,5,6]
, only // only n element for array.filter
@ -40,7 +41,7 @@ console.log( ROOT`/wot/members` )
let members = await Promise.all(
( await BMA`/wot/members` )
.results
.filter( only(50) )
.filter( only(args.limit) )
// .map( person=> ROOT`/wot/certified-by/${person.pubkey}` )
// .map( log() )
.map( person=> BMA`/wot/certified-by/${person.pubkey}` )

4
index.html Normal file
View File

@ -0,0 +1,4 @@
<body style="padding: 0; margin: 0">
<iframe
src="https://embed.kumu.io/3c1161d4ec131eda377a4e1163ea12fb"
width="100%" height="100%" frameborder="0"></iframe>