-
Notifications
You must be signed in to change notification settings - Fork 210
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add select dropdown for some module UIs in demo #142
Comments
It seems you've just enabled the issue triaging. I'm just scraping all issues from your repository and will give you some more information about this in a few minutes or so. Because of the rate limit we can't scrape all information (including all comments and authors) right now - our system is already set up to scrape this in the next days over which the predictions will become more precise every day. Sit tight! |
The contributors most likely able to help are: |
I shall take this up today |
Wow!
…On Oct 18, 2017 3:19 AM, "Chinmay Pandhare" ***@***.***> wrote:
Closed #142 <#142>.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#142 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AABfJ_h6KM_iZTkELu4NtuUkC2hPm6xWks5staZggaJpZM4P85Fk>
.
|
This line of code inserts an
<input>
for each module option, so that users can change that option in the demo interface:https://github.com/publiclab/image-sequencer/blob/master/examples/demo.js#L68
Try that out here: https://publiclab.github.io/image-sequencer/examples/
Some modules have options of type
select
instead of typeinteger
orstring
, like this one: https://github.com/publiclab/image-sequencer/blob/master/src/modules/SegmentedColormap/info.json#L5Compare that to this module, which specifies an
integer
: https://github.com/publiclab/image-sequencer/blob/master/src/modules/Crop/info.json#L7When a
select
is specified, we should insert a<select>
element and the various options as a dropdown, rather than a text input.Would love help with this!
The text was updated successfully, but these errors were encountered: