1.0.5 • Published 5 years ago

tablewrap v1.0.5

Weekly downloads
1
License
ISC
Repository
-
Last release
5 years ago

🖇 tablewrap 🖇

tablewrap is a small javascript helper that wraps your html tables on small viewports column-wise.

demo

features

  • no modification of existing css styles needed
  • no extra markup needed
  • performant and lightweight
  • comes as an es6 module
  • cross-browser-support (ie11)
  • support for preserving the first column

installation

npm install tablewrap

usage

import Tablewrap from 'tablewrap';

document.addEventListener('DOMContentLoaded', () => {
    let tablewrap = new Tablewrap({
        selector: 'table',
        breakpoint: 700,
        preserveFirstCol: true
    });

    tablewrap.destroy();
});
1.0.5

5 years ago

1.0.4

5 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago