27 lines
416 B
HTML
27 lines
416 B
HTML
<html>
|
|
<head>
|
|
</head>
|
|
<body>
|
|
<script src="/bricks/bricks.js"></script>
|
|
<script>
|
|
const opts =
|
|
{
|
|
"widget": {
|
|
"id":"recorder",
|
|
"widgettype":"AudioRecorder",
|
|
"options":{
|
|
"height":"40px",
|
|
"start_icon":"/bricks/imgs/start_recording.png"
|
|
}
|
|
}
|
|
}
|
|
|
|
;
|
|
const app = new BricksApp(opts);
|
|
console.log('here ..........');
|
|
app.run();
|
|
console.log('here 1..........');
|
|
</script>
|
|
</body>
|
|
</html>
|