| 1 |
|
if (Drupal.jsEnabled) { |
| 2 |
|
$(document).ready(function() { |
| 3 |
|
if ($("#edit-magento-products-cache-time-CUSTOM").attr("checked") == true) { |
| 4 |
|
$("#cache_time").css("display","block"); |
| 5 |
|
} |
| 6 |
|
$("#edit-magento-products-cache-time-CUSTOM").click(function () { |
| 7 |
|
$("#cache_time").css("display","block"); |
| 8 |
|
return true; |
| 9 |
|
}); |
| 10 |
|
$("#edit-magento-products-cache-time-CACHE-TEMPORARY").click(function () { |
| 11 |
|
$("#cache_time").css("display","none"); |
| 12 |
|
$("#edit-magento-products-cache-custom-time").val(24); |
| 13 |
|
return true; |
| 14 |
|
}); |
| 15 |
|
$("#edit-magento-products-cache-time-CACHE-PERMANENT").click(function () { |
| 16 |
|
$("#cache_time").css("display","none"); |
| 17 |
|
$("#edit-magento-products-cache-custom-time").val(24); |
| 18 |
|
return true; |
| 19 |
|
}); |
| 20 |
|
}); |
| 21 |
|
} |
| 22 |
|
|