diff --git a/app/assets/javascripts/examples.js.coffee.sample b/app/assets/javascripts/examples.js.coffee.sample deleted file mode 100644 index 5187716..0000000 --- a/app/assets/javascripts/examples.js.coffee.sample +++ /dev/null @@ -1,15 +0,0 @@ -# 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() -