Newer
Older
dmpopidor / app / javascript / views / super_admin / users / edit.js
@Bodacious Bodacious on 19 Oct 2018 405 bytes Update asset structure with webpacker gem
import { initOrgSelection, validateOrgSelection } from '../../shared/my_org';

$(() => {
  const options = { selector: '#super_admin_user_edit' };
  initOrgSelection(options);

  $('#super_admin_user_edit').on('submit', (e) => {
    // Additional validation to force the user to choose an org or type something for other
    if (!validateOrgSelection(options)) {
      e.preventDefault();
    }
  });
});