Skip to content
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

Fixed Unresponsive Select Step Box #927

Merged
merged 8 commits into from
Mar 25, 2019
6 changes: 5 additions & 1 deletion dist/image-sequencer-ui.js
Original file line number Diff line number Diff line change
Expand Up @@ -806,12 +806,16 @@ function IntermediateHtmlStepUi(_sequencer, step, options) {
<p>Crop</p>\
</div>\
</div>\
<div class="center-align">\
<div class="row center-align">\
<div class="col-md-8">\
<select class="form-control input-lg" id="selectStep">\
<!-- The default null selection has been appended manually in demo.js\
This is because the options in select are overritten when options are appended.-->\
</select>\
<div>\
<div class="col-md-4">\
<button class="btn btn-success btn-lg" name="add" id="add-step-btn">Add Step</button>\
<div>\
</div>\
</div>\
</div>\
Expand Down
8 changes: 6 additions & 2 deletions examples/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -130,12 +130,16 @@ <h1><a href="/" target='_blank' class="name-header">Image Sequencer</a></h1>
<p>Crop</p>
</div>
</div>
<div class="center-align">
<div class="row center-align">
<div class="col-md-8">

<select id="selectStep" >
<!-- The default null selection has been appended manually in demo.js
This is because the options in select are overritten when options are appended.-->
</select>
<button class="btn btn-success btn-lg" name="add" id="add-step-btn">Add Step</button>
</div>
<div class="col-md-4">
<button class="btn btn-success btn-lg" name="add" id="add-step-btn">Add Step</button></div>
</div>
<div class="row center-align">
<button id="resetButton" class="btn btn-default btn-lg" style=" margin: 20px 35px 0px 35px; width:100%;">Clear All Steps</button>
Expand Down
6 changes: 5 additions & 1 deletion examples/lib/intermediateHtmlStepUi.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,16 @@ function IntermediateHtmlStepUi(_sequencer, step, options) {
<p>Crop</p>\
</div>\
</div>\
<div class="center-align">\
<div class="row center-align">\
<div class="col-md-8">\
<select class="form-control input-lg" id="selectStep">\
<!-- The default null selection has been appended manually in demo.js\
This is because the options in select are overritten when options are appended.-->\
</select>\
<div>\
<div class="col-md-4">\
<button class="btn btn-success btn-lg" name="add" id="add-step-btn">Add Step</button>\
<div>\
</div>\
</div>\
</div>\
Expand Down
Loading