1
0
Fork 0
mirror of https://github.com/koalyptus/TableFilter.git synced 2024-05-13 03:46:41 +02:00

Removed unused properties

This commit is contained in:
Max Guglielmi 2015-06-12 00:23:35 +10:00
parent de7784c8c8
commit 8f94875404
4 changed files with 9 additions and 12 deletions

View file

@ -79,7 +79,7 @@ grunt test-only:test.html,test-sort.html
```
## Documentation
Find the complete documentation in the [WIKI](https://github.com/koalyptus/TableFilter/wiki).
Find the complete documentation in the [WIKI](https://github.com/koalyptus/TableFilter/wiki) section.
## Support
* GitHub for reporting bugs and feature requests.

View file

@ -1,6 +1,6 @@
/**
* TableFilter v0.0.0 by Max Guglielmi
* build date: 2015-06-11T07:25:25.230Z
* build date: 2015-06-11T12:43:01.217Z
* MIT License
*/

File diff suppressed because one or more lines are too long

View file

@ -148,8 +148,6 @@ export class TableFilter{
this.rDiv = null;
//div for paging elements
this.mDiv = null;
//table container div for fixed headers (IE only)
this.contDiv = null;
//defines css class for div containing paging elements, rows counter etc
this.infDivCssClass = f.inf_div_css_class || 'inf';
@ -1949,13 +1947,13 @@ export class TableFilter{
}
/**
* Return the data for a given colum
* Return the data of a specified colum
* @param {Number} colindex Column index
* @param {Boolean} num Return unformatted number
* @param {Array} exclude List of row indexes to be excluded
* @return {Array} Flat list of data for a column
*/
getColValues(colindex, num, exclude){
getColValues(colindex, num=false, exclude=undefined){
if(!this.fltGrid){
return;
}
@ -2108,7 +2106,6 @@ export class TableFilter{
* @return {Number} Number of cells
*/
getCellsNb(rowIndex=0){
// let tr = !rowIndex ? this.tbl.rows[0] : this.tbl.rows[rowIndex];
let tr = this.tbl.rows[rowIndex];
return tr.cells.length;
}