Skip to content

Commit 765396c

Browse files
committed
gallery drop down fix, coming soon buttons
1 parent 3994874 commit 765396c

File tree

2 files changed

+12
-5
lines changed

2 files changed

+12
-5
lines changed

alphaRaglan.html

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -116,10 +116,10 @@ <h3>Breathable. Fast Drying. Ultralight. Active warmth.</br>All of the above, pl
116116
<section class="wrapper style1 align-center">
117117
<div class="inner">
118118
<p>
119-
<button id="toggle_build_gallery_button" class="button large icon solid fa-angle-down" >Additional Photos</button>
119+
<button id = "toggle_style_gallery_button" class="button large icon solid fa-angle-down" >Additional Photos</button>
120120
</p>
121121
<!-- element hidden until button click, build_gallery.js -->
122-
<div id = "build_gallery" style="display:none;">
122+
<div id = "style_gallery" style="display:none;">
123123
<section class="gallery style1 small">
124124
<article>
125125
<a href="images/alphaRaglan/bench.jpg" class="image">
@@ -346,7 +346,8 @@ <h3>Features</h3>
346346
<li>Seam allowances included for all pattern panels and sizes</li>
347347
</ul>
348348

349-
<a href="https://payhip.com/b/erIul" class="button primary icon solid fa-credit-card" style="font-size: 100%">$20</a>
349+
<action class="button primary" style="font-size: 100%">Available March 1</a>
350+
<!-- <a href="https://payhip.com/b/erIul" class="button primary icon solid fa-credit-card" style="font-size: 100%">$20</a> -->
350351
<p>Valid email address required for download link and revision notifications.</p>
351352

352353
</section>
@@ -365,7 +366,8 @@ <h4>Limited Quantity Drop</h4>
365366
<li>Everything in the Digital Sewing Pattern for immediate download</li>
366367
</ul>
367368

368-
<a href="https://payhip.com/b/2CDoA" class="button icon solid fa-credit-card" style="font-size: 100%">$40</a>
369+
<action class="button" style="font-size: 100%">Available March 3</a>
370+
<!-- <a href="https://payhip.com/b/2CDoA" class="button icon solid fa-credit-card" style="font-size: 100%">$40</a> -->
369371
<p>US-based addresses only</p>
370372
</div>
371373
</section>
@@ -394,7 +396,7 @@ <h2>Sewalong Tutorials</h2>
394396

395397
<!-- Build Gallery -->
396398
<p>
397-
<button id="toggle_build_gallery_button" class="button large icon solid fa-angle-down" >Detailed Build Photos</button>
399+
<button id = "toggle_build_gallery_button" class="button large icon solid fa-angle-down" >Detailed Build Photos</button>
398400
</p>
399401
<!-- element hidden until button click, build_gallery.js -->
400402
<div id = "build_gallery" style="display:none;">

assets/js/build_gallery.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@
66
div id #build_gallery
77
*/
88

9+
$("#toggle_style_gallery_button").click(function() {
10+
$("#style_gallery").slideToggle( 'fast' );
11+
$( this ).toggleClass('fa-angle-down');
12+
$( this ).toggleClass('fa-angle-up');
13+
})
914
$("#toggle_build_gallery_button").click(function() {
1015
$("#build_gallery").slideToggle( 'fast' );
1116
$( this ).toggleClass('fa-angle-down');

0 commit comments

Comments
 (0)