Parent Directory
|
Revision Log
|
Revision Graph
Initial commit of Multivendor-Multigateway ecommerce payment method module. This is still very alpha and proprietary to the site for which it's being developed. Public release coming ASAP.
| 1 | $(document).ready(function(){ |
| 2 | $("TR").filter(".details").hide(); |
| 3 | $("TR").filter(".showing").show(); |
| 4 | |
| 5 | // show hide links on the txn summary page for shoppers |
| 6 | $("a").filter(".showhide").click( function() { |
| 7 | $(this).parents("TR").next().toggle(); |
| 8 | return false; |
| 9 | } ); |
| 10 | }); |
| ViewVC Help | |
| Powered by ViewVC 1.1.2 |