mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-01 21:47:16 +00:00
8 lines
284 B
CoffeeScript
8 lines
284 B
CoffeeScript
$(document).ready ->
|
|
$('#cart_adjustments').hide()
|
|
|
|
$('th.cart-adjustment-header').html('<a href="#">Order Adjustments...</a>')
|
|
$('th.cart-adjustment-header a').click ->
|
|
$('#cart_adjustments').toggle()
|
|
$('th.cart-adjustment-header a').html('Order Adjustments')
|
|
false |