24
1
Fork 0
drop.chapril.org-firefoxsend/app/templates/activeBackground/index.js

11 lines
317 B
JavaScript

const html = require('choo/html');
const assets = require('../../../common/assets');
module.exports = function() {
const backgrounds = assets.match(/background/);
const src = backgrounds[Math.floor(Math.random() * backgrounds.length)];
return html`<div class="background">
<img src="${src}">
</div>`;
};