Newer
Older
dmpopidor / lib / assets / javascripts / views / org_admin / sections / index.js
@briley briley on 23 May 2018 254 bytes Template Versioning
import ariatiseForm from '../../../utils/ariatiseForm';

$(() => {
  ariatiseForm({ selector: '.new_section' });
  $('.section_new_link').on('click', (e) => {
    $(e.target).hide();
    $(e.target).closest('.row').find('.section_new').show();
  });
});