2016-07-02 16:48:47 +02:00
|
|
|
$(document).on 'turbolinks:load', ->
|
2016-01-04 00:49:52 +01:00
|
|
|
# Manage orga tags edition
|
|
|
|
$('#orga_tags').each ->
|
|
|
|
elt = $(this)
|
|
|
|
$.ajax
|
|
|
|
url: '/tags/orgas.json'
|
|
|
|
.done (data) ->
|
|
|
|
tags = jQuery.map data, (n) -> n[0]
|
|
|
|
|
|
|
|
elt.select2 tags: tags, separator: [' '], tokenSeparators: [' ']
|
|
|
|
|
|
|
|
# Manage the tags label so it points the proper select2 input
|
|
|
|
$('label[for=orga_tags]').attr 'for', 's2id_autogen1'
|