mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
9 lines
275 B
CoffeeScript
9 lines
275 B
CoffeeScript
$(document).ready ->
|
|
$('#cart_adjustments').hide()
|
|
|
|
$('th.cart-adjustment-header').html('<a href="#">Distribution...</a>')
|
|
$('th.cart-adjustment-header a').click ->
|
|
$('#cart_adjustments').toggle()
|
|
$('th.cart-adjustment-header a').html('Distribution')
|
|
false
|