mirror of
https://github.com/koalyptus/TableFilter.git
synced 2026-03-16 23:55:46 +01:00
Started unit tests for filter operators
This commit is contained in:
parent
91cd6a88c5
commit
20517cdfe2
13 changed files with 9552 additions and 36 deletions
|
|
@ -112,7 +112,6 @@ export class GridLayout extends Feature{
|
|||
this.tblCont.className = this.gridContCssClass;
|
||||
if(this.gridWidth){
|
||||
if(this.gridWidth.indexOf('%') != -1){
|
||||
console.log(this.gridWidth);
|
||||
this.tblCont.style.width = '100%';
|
||||
} else {
|
||||
this.tblCont.style.width = this.gridWidth;
|
||||
|
|
@ -140,7 +139,6 @@ export class GridLayout extends Feature{
|
|||
this.headTblCont.className = this.gridHeadContCssClass;
|
||||
if(this.gridWidth){
|
||||
if(this.gridWidth.indexOf('%') != -1){
|
||||
console.log(this.gridWidth);
|
||||
this.headTblCont.style.width = '100%';
|
||||
} else {
|
||||
this.headTblCont.style.width = this.gridWidth;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue