mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-27 21:06:49 +00:00
16 lines
288 B
CoffeeScript
16 lines
288 B
CoffeeScript
$ ->
|
|
($ '#new_image_link').click (event) ->
|
|
event.preventDefault()
|
|
|
|
($ '.no-objects-found').hide()
|
|
|
|
($ this).hide()
|
|
$.ajax
|
|
type: 'GET'
|
|
url: @href
|
|
data: (
|
|
authenticity_token: AUTH_TOKEN
|
|
)
|
|
success: (r) ->
|
|
($ '#images').html r
|