mirror of
https://github.com/indentlabs/notebook.git
synced 2025-10-26 11:19:22 +00:00
8 lines
222 B
CoffeeScript
8 lines
222 B
CoffeeScript
$(document).ready ->
|
|
|
|
# Enable clicking an image to upload a map
|
|
$('#placeholder_map_input').on 'click', (e) ->
|
|
e.preventDefault()
|
|
$('#location_map').trigger 'click'
|
|
$('#location_map').removeClass 'hidden'
|