forked from jywarren/image-sequencer
-
Notifications
You must be signed in to change notification settings - Fork 209
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
Changes from 1 commit
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
d2b4217
Added the resize module
harshithpabbati dbef2fd
Added the resize quick button
harshithpabbati 349d078
Made the icon to fit into the box
harshithpabbati 3df09de
Added the footer to the main page
harshithpabbati 8ca127c
Added the resize quick button
harshithpabbati 5e44c6d
Added the resize quick button
harshithpabbati f8bf9b6
Added the resize quick button
harshithpabbati File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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="icon-resize-full 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> | ||
|
@@ -186,19 +192,36 @@ <h2 style="margin-top:20px">Save</h2> | |
</section> | ||
</div> | ||
</div> | ||
|
||
<button id="move-up"><i class="fa fa-arrow-circle-o-up"></i></button> | ||
</body> | ||
<footer> | ||
<hr style="margin:20px;"><center><a class="color:grey;" id="clear-cache">Clear offline cache</a></center> | ||
<div class="row"> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think you have made this branch from your footer branch and not from main. Please remove these changes(footer) |
||
<div class="col-md-6 col-sm-12"> | ||
<h2>Need Help?</h2> | ||
<p> | ||
Post a link to this and ask for help from other community members on <a href="https://publiclab.org/">PublicLab.org</a> | ||
</p> | ||
<p> | ||
<a class="btn btn-primary" href="https://github.com/publiclab/image-sequencer/issues/new">Ask a question »</a> | ||
</p> | ||
</div> | ||
<div class="col-md-6 col-sm-12"> | ||
<h2>Improve This Tool</h2> | ||
<p> | ||
This is an open source toolkit which you can help add to and improve on <a href="https://github.com">Github</a> | ||
</p> | ||
<p> | ||
<a class="btn btn-primary" href="https://github.com/publiclab/image-sequencer">View the code »</a> | ||
</p> | ||
</div> | ||
</footer> | ||
|
||
<button id="move-up"><i class="fa fa-arrow-circle-o-up"></i></button> | ||
|
||
<script type="text/javascript"> | ||
$(function() { | ||
var sequencer; | ||
}) | ||
</script> | ||
|
||
</body> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 icon-resize-full fa-4x"></i>\ | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Also here. |
||
</div>\ | ||
<p>Resize</p>\ | ||
</div>\ | ||
<div>\ | ||
<div class="radio" data-value="brightness">\ | ||
<i class="fa fa-sun-o fa-4x i-over"></i>\ | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You have to add the classes
fa fa-4x i-over
andfa-name-of-icon
. Do you have any other difficulty?