| 1 |
// $Id$
|
| 2 |
|
| 3 |
/**
|
| 4 |
* Collapse the shopping cart block at page load.
|
| 5 |
*/
|
| 6 |
$(document).ready(function() {
|
| 7 |
if (collapsed_block == true) {
|
| 8 |
$('#block-cart-contents').hide(0);
|
| 9 |
}
|
| 10 |
$('.cart-block-toggle').click(function() { cart_block_toggle(); } );
|
| 11 |
});
|
| 12 |
|
| 13 |
/**
|
| 14 |
* Toggle the shopping cart block open and closed.
|
| 15 |
*/
|
| 16 |
function cart_block_toggle() {
|
| 17 |
$('#block-cart-contents').toggle();
|
| 18 |
|
| 19 |
isrc = $('#block-cart-title-arrow').attr('src');
|
| 20 |
if (isrc.toLowerCase().match("up") != null) {
|
| 21 |
$('#block-cart-title-arrow').attr('src', uc_cart_path + '/images/bullet-arrow-down.gif');
|
| 22 |
}
|
| 23 |
else {
|
| 24 |
$('#block-cart-title-arrow').attr('src', uc_cart_path + '/images/bullet-arrow-up.gif');
|
| 25 |
}
|
| 26 |
}
|