Chris Cox
Chris Cox
Remixer has a few dependencies in the iframe overlay, such as Firebase, MDL, and React. They are pulled in via running `npm install`. However this makes using remixer in online...
e.g. ```javascript remixer.addRangeVariable({ label: "Box opacity", defaultValue: 1, from: 0, to: 1, incrementSize: .1, onChange(nextValue) { box.style.opacity = nextValue; } }); ``` from https://github.com/material-foundation/material-remixer-web/pull/25#discussion_r89908054
investigate further the comments from @appsforartists in https://github.com/material-foundation/material-remixer-web/pull/19.
Instead of being specific to UIScrollViewDelegate, we might be able to generalize this and the combiner to work regardless of protocol. Would need to investigate any runtime costs associated with...