GITLAB

Comunidad Desarrollo UBV / Arcu2

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • arcu2
  • ..
  • js
  • responsive-custom.js
  • 74c93ed64   proyecto de arcu con correcciones: contador de caracteres especiales en la resolución Browse Code »
    root
    2021-09-28 06:49:00 -0400  
responsive-custom.js 405 Bytes
edit raw blame history permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
$(document).ready(function() {
    $('#res-config').DataTable({
        responsive: true
    });
    var newcs = $('#new-cons').DataTable();

    new $.fn.dataTable.Responsive(newcs);

    $('#show-hide-res').DataTable({
        responsive: {
            details: {
                display: $.fn.dataTable.Responsive.display.childRowImmediate,
                type: ''
            }
        }
    });
});