1
0
Fork 0
mirror of https://github.com/koalyptus/TableFilter.git synced 2024-05-09 01:46:40 +02:00

Merge pull request #601 from koalyptus/599-colvis-gridlayout-fix

fix colvis bug with grid-layout on
This commit is contained in:
koalyptus 2018-05-18 16:20:56 +10:00 committed by GitHub
commit bfa23c3b6e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 13 additions and 13 deletions

View file

@ -1,5 +1,5 @@
[![Build Status](https://api.travis-ci.org/koalyptus/TableFilter.svg?branch=master)](https://travis-ci.org/koalyptus/TableFilter)
[![Document](https://koalyptus.github.io/TableFilter/docs/badge.svg)](https://koalyptus.github.io/TableFilter/docs/source.html)
[![Document](https://www.tablefilter.com/docs/badge.svg)](https://www.tablefilter.com/docs/source.html)
[![codecov](https://codecov.io/gh/koalyptus/TableFilter/branch/master/graph/badge.svg)](https://codecov.io/gh/koalyptus/TableFilter)
[![Greenkeeper badge](https://badges.greenkeeper.io/koalyptus/TableFilter.svg)](https://greenkeeper.io/)
@ -133,7 +133,7 @@ to view the coverage report(s), open the `index.html` under the
[online](https://codecov.io/gh/koalyptus/TableFilter).
## Demos
Check out the online [examples](http://koalyptus.github.io/TableFilter/examples)
Check out the online [examples](http://www.tablefilter.com/examples.html)
or generate the demos locally:
```shell
npm run build:demos
@ -150,7 +150,7 @@ http://localhost:8080/demos/
## Documentation
Find exhaustive documentation on the configuration options in the [WIKI](https://github.com/koalyptus/TableFilter/wiki) section.
Autogenerated documentation of the ES6 modules is available on the website: [docs](http://koalyptus.github.io/TableFilter/docs)
Autogenerated documentation of the ES6 modules is available on the website: [docs](http://www.tablefilter.com/docs)
If you previously used the HTML Table Filter Generator plugin, verify the configuration
options you are using are still supported: [Obsolete](https://github.com/koalyptus/TableFilter/wiki/Obsolete)

4
dist/starter.html vendored
View file

@ -1,10 +1,10 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>tablefilter v0.6.35 - Starter</title>
<title>tablefilter v0.6.37 - Starter</title>
</head>
<body>
<h1>tablefilter v0.6.35</h1>
<h1>tablefilter v0.6.37</h1>

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -1,6 +1,6 @@
{
"name": "tablefilter",
"version": "0.6.36",
"version": "0.6.37",
"description": "A Javascript library making HTML tables filterable and a bit more",
"license": "MIT",
"author": {
@ -73,5 +73,5 @@
"bugs": {
"url": "https://github.com/koalyptus/TableFilter/issues"
},
"homepage": "http://koalyptus.github.io/TableFilter"
"homepage": "https://www.tablefilter.com"
}

View file

@ -710,7 +710,7 @@ export default class ColsVisibility extends Feature {
}
_hideCol(tbl, colIdx, hide) {
let colElms = tag(this.tf.dom(), 'col');
let colElms = tag(tbl, 'col');
if (colElms.length === 0) {
return;
}