1
0
Fork 0
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:
Max Guglielmi 2015-11-29 11:46:20 +11:00
commit 20517cdfe2
13 changed files with 9552 additions and 36 deletions

View file

@ -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;