rubyforgood/casa

View on GitHub
app/javascript/src/emancipations.js

Summary

Maintainability
A
0 mins
Test Coverage
/* global $ */

$(() => { // JQuery's callback for the DOM loading
  $('table#all-case-emancipations').DataTable({
    autoWidth: false,
    searching: false,
    stateSave: false,
    columnDefs: [
      { orderable: false, targets: 1 }
    ],
    language: {
      emptyTable: 'No transitioning cases'
    }
  })
})