UNPKG

mandelbrot-set

Version:

Web components and a web worker for painting Julia and Mandelbrot sets on a web page.

18 lines (13 loc) 452 B
const defaultComputerUrl = 'https://unpkg.com/mandelbrot-set@2.2.0/public/scripts/computer.js' let computerUrl = defaultComputerUrl function getComputerUrl () { return computerUrl } class MandelbrotSetComputerElement extends HTMLElement { constructor () { super() computerUrl = this.getAttribute('src') || defaultComputerUrl } } customElements.define('mandelbrot-set-computer', MandelbrotSetComputerElement) export { getComputerUrl }