This file contains hidden or 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
| <tr> | |
| <!-- Start Active_collections TD --> | |
| <td style="padding-bottom:10px; padding-top:20px;"> | |
| <table width="100%" cellspacing="0" cellpadding="0"> | |
| <!-- accesses array length to check if it's an odd or even number --> | |
| {a = length(active)} | |
| {if (a % 2) != 0} | |
| {a = a - 1} | |
| {/if} |
This file contains hidden or 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
| <table> | |
| {foreach order as o} | |
| <tr> | |
| <td>{o.qty}</td> | |
| <td>{o.name}</td> | |
| </tr> | |
| {/foreach} | |
| </table> |
This file contains hidden or 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
| var vol = 20; | |
| var t = 0; | |
| function playSample(id) { | |
| $("#player").stop(); | |
| vol = 20; | |
| stopSample(); | |
| $("#player").setFile("yourfile.mp3"); | |
| fadeIn(); |