-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Split HTML to make it easier to edit. (#106)
Co-authored-by: Cocoa <[email protected]>
- Loading branch information
1 parent
4c0ffc8
commit 261a32f
Showing
12 changed files
with
745 additions
and
641 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<div class="space_out"> | ||
<button | ||
type="button" | ||
class="medium_btn" | ||
name="preview" | ||
id="preview" | ||
disabled | ||
data-balloon-length="medium" | ||
aria-label="Will not show previews if 'Signature Files Only' is selected. Only shows one side for 'Single Sided' printing. Not tested on all browsers (or any browsers other than Chrome really...)" | ||
data-balloon-pos="up" | ||
> | ||
Preview PDF | ||
</button> | ||
<button type="button" class="large_btn" name="generate" id="generate" disabled> | ||
Generate PDF Output | ||
</button> | ||
<button | ||
type="button" | ||
class="medium_btn" | ||
name="reset_settings" | ||
id="reset_settings" | ||
data-balloon-length="medium" | ||
aria-label="The page is able to save and load your current settings via the site URL. Clicking this button will reset those to the default settings" | ||
data-balloon-pos="up" | ||
> | ||
Reset Settings | ||
</button> | ||
</div> |
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<div class="section" id="input"> | ||
<h2>File Info</h2> | ||
<span class="row" | ||
><label>Input File: <input type="file" name="input_file" accept=".pdf" id="input_file" /></label | ||
></span> | ||
<!-- <span class="row"><label>Page Size: <span id="page_size"></span></span> --> | ||
<!-- <span class="row">Page Ratio: <span id="input_ratio"></span></span> --> | ||
<span class="row" style="padding: 10px; font-style: italic" | ||
>While some PDF viewers display the first two pages as a spread, be aware the first page, which | ||
is odd, will be on the right when printed. The first printed spread are pages 2 & 3 of your PDF | ||
document. Evens always on the left, odds always on the right.</span | ||
> | ||
<span class="row" | ||
><label for="print_file">Generated Files</label> | ||
<select name="print_file" id="print_file"> | ||
<option value="aggregated">Aggregated File Only</option> | ||
<option value="both" selected>Both aggregated & per signature files</option> | ||
<option value="signatures">Signature Files Only</option> | ||
</select> | ||
</span> | ||
</div> |
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<div class="section" id="flyleaf_info"> | ||
<h2>Flyleafs</h2> | ||
<span class="row"> | ||
<label>Add flyleafs <input type="number" name="flyleafs" value="1" /></label> | ||
<span | ||
data-balloon-length="medium" | ||
aria-label="Extra blank pages at the start and end of the book" | ||
data-balloon-pos="up" | ||
>ℹ️</span | ||
> | ||
</span> | ||
</div> |
Oops, something went wrong.