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

Added the resize quick button #782

Merged
merged 7 commits into from
Feb 18, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions dist/image-sequencer-ui.js
Original file line number Diff line number Diff line change
Expand Up @@ -694,6 +694,7 @@ function generatePreview(previewStepName, customValues, path, selector) {
$('#'+selector+' img').remove();

var previewSequencerSteps = {
"resize": "125%",
"brightness": "20",
"saturation": "5",
"rotate": 90,
Expand Down Expand Up @@ -729,6 +730,12 @@ function IntermediateHtmlStepUi(_sequencer, step, options) {
<div class="panel-body">\
<p class="info">Select a new module to add to your sequence.</p>\
<div class="row center-align radio-group">\
<div>\
<div class="radio" data-value="resize">\
<i class="fa fa-arrows-alt fa-4x i-over"></i>\
</div>\
<p>Resize</p>\
</div>\
<div>\
<div class="radio" data-value="brightness">\
<i class="fa fa-sun-o fa-4x i-over"></i>\
Expand Down
2 changes: 1 addition & 1 deletion dist/image-sequencer-ui.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion examples/demo.css
Original file line number Diff line number Diff line change
Expand Up @@ -249,4 +249,4 @@ h1 {
a.name-header{
text-decoration: none;
color: #445;
}
}
6 changes: 6 additions & 0 deletions examples/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,12 @@ <h1><a href="/" target='_blank' class="name-header">Image Sequencer</a></h1>
</div>
<p class="info">Select a new module to add to your sequence.</p>
<div class="row center-align radio-group">
<div>
<div class="radio" data-value="resize">
<i class="fa fa-arrows-alt fa-4x i-over"></i>
</div>
<p>Resize</p>
</div>
<div>
<div class="radio" data-value="brightness">
<i class="fa fa-sun-o fa-4x i-over"></i>
Expand Down
1 change: 1 addition & 0 deletions examples/lib/insertPreview.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ function generatePreview(previewStepName, customValues, path, selector) {
$('#'+selector+' img').remove();

var previewSequencerSteps = {
"resize": "125%",
"brightness": "20",
"saturation": "5",
"rotate": 90,
Expand Down
6 changes: 6 additions & 0 deletions examples/lib/intermediateHtmlStepUi.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@ function IntermediateHtmlStepUi(_sequencer, step, options) {
<div class="panel-body">\
<p class="info">Select a new module to add to your sequence.</p>\
<div class="row center-align radio-group">\
<div>\
<div class="radio" data-value="resize">\
<i class="fa fa-arrows-alt fa-4x i-over"></i>\
</div>\
<p>Resize</p>\
</div>\
<div>\
<div class="radio" data-value="brightness">\
<i class="fa fa-sun-o fa-4x i-over"></i>\
Expand Down