conveyal/modeify

View on GitHub
client/location-page/commuter-confirm-modal.html

Summary

Maintainability
Test Coverage
<div class="modal fade in" style="display:block;">
  <div class="modal-dialog">
    <form class="modal-content">
      <div class="modal-header">
        <button type="button" class="close" on-tap="close">&times;</button>
        <h4 class="modal-title">Confirm Commuter Data</h4>
      </div>
      <div style='max-height: 300px; overflow: auto;'>
        <table class="modal-body table">
          <thead>
            <th></th>
            <th>Email</th>
            <th>Internal ID</th>
            <th>Last Name</th>
            <th>First Name</th>
            <th>Address</th>
          </thead>
          <tbody data-each="commuters"></tbody>
        </table>
      </div>
      <div class="modal-footer">
        <button type="button" class="btn btn-default" on-tap="close" data-dismiss="modal">Cancel</button>
        <button type="submit" class="btn btn-primary" on-tap="upload">Upload Commuters</button>
      </div>
    </form><!-- /.modal-content -->
  </div><!-- /.modal-dialog -->
</div>