Update github pages and reference local file in example
This commit is contained in:
parent
a8751dc755
commit
0de20e6d3e
|
@ -75,6 +75,10 @@ input{
|
||||||
<label for="frontIH">Front Inner Height</label>
|
<label for="frontIH">Front Inner Height</label>
|
||||||
<input name="frontIH" type="number" value="40" /> mm
|
<input name="frontIH" type="number" value="40" /> mm
|
||||||
</div>
|
</div>
|
||||||
|
<div>
|
||||||
|
<label for="fold">Fold Section Width</label>
|
||||||
|
<input name="fold" type="number" value="5" /> mm
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<div>
|
<div>
|
||||||
|
@ -147,6 +151,7 @@ input{
|
||||||
const frontIH = Math.round($('frontIH').value * MM);
|
const frontIH = Math.round($('frontIH').value * MM);
|
||||||
|
|
||||||
const maxLength = Math.round($('maxLength').value * MM);
|
const maxLength = Math.round($('maxLength').value * MM);
|
||||||
|
const fold = Math.round($('fold').value * MM);
|
||||||
|
|
||||||
const key = $('key').checked;
|
const key = $('key').checked;
|
||||||
const overlap = $('overlap').checked;
|
const overlap = $('overlap').checked;
|
||||||
|
@ -172,6 +177,7 @@ input{
|
||||||
frontIW : frontIW,
|
frontIW : frontIW,
|
||||||
frontOH : frontOH,
|
frontOH : frontOH,
|
||||||
frontIH : frontIH,
|
frontIH : frontIH,
|
||||||
|
fold : fold,
|
||||||
|
|
||||||
maxLength : maxLength,
|
maxLength : maxLength,
|
||||||
parts : parts,
|
parts : parts,
|
||||||
|
|
|
@ -113,7 +113,7 @@ input{
|
||||||
</div>
|
</div>
|
||||||
<img id="img" />
|
<img id="img" />
|
||||||
<!--<script src="../src/bellows.js"></script>-->
|
<!--<script src="../src/bellows.js"></script>-->
|
||||||
<script src="https://rawgit.com/sixteenmillimeter/bellows/master/src/bellows.js"></script>
|
<script src="../src/bellows.js"></script>
|
||||||
<script>
|
<script>
|
||||||
'use script'
|
'use script'
|
||||||
const $ = function (select) {
|
const $ = function (select) {
|
||||||
|
|
Loading…
Reference in New Issue