mirror of https://github.com/fspc/BikeShed-1.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
633 B
15 lines
633 B
# Place all the behaviors and hooks related to the matching controller here.
|
|
# All this logic will automatically be available in application.js.
|
|
# You can use CoffeeScript in this file: http://jashkenas.github.com/coffee-script/
|
|
jQuery ->
|
|
$('form').on 'click', '.remove_fields', (event) ->
|
|
$(this).prev('input[type=hidden]').val('1')
|
|
$(this).closest('fieldset').hide()
|
|
event.preventDefault()
|
|
|
|
$('form').on 'click', '.add_fields', (event) ->
|
|
time = new Date().getTime()
|
|
regexp = new RegExp($(this).data('id'), 'g')
|
|
$(this).before($(this).data('fields').replace(regexp, time))
|
|
event.preventDefault()
|
|
|
|
|