1
0
Fork 0
mirror of https://github.com/koalyptus/TableFilter.git synced 2024-06-18 05:35:51 +02:00

Removed commented out code left-overs

This commit is contained in:
Max Guglielmi 2016-11-10 15:50:31 +11:00
parent a50e0fa4bc
commit 777d8df76e
2 changed files with 1 additions and 4 deletions

View file

@ -354,9 +354,7 @@ export class CheckList extends Feature {
let val = this.opts[y]; //item value
let lbl = this.isCustom ? this.optsTxt[y] : val; //item text
let fltId = tf.fltIds[colIndex];
let li = createCheckItem(`${fltId}_${(y + chkCt)}`,
/*tf.fltIds[colIndex] + '_' + (y + chkCt),*/
val, lbl);
let li = createCheckItem(`${fltId}_${(y + chkCt)}`, val, lbl);
li.className = this.itemCssClass;
if (tf.linkedFilters && tf.disableExcludedOptions &&

View file

@ -459,7 +459,6 @@ export class GridLayout extends Feature {
let c = row.cells[n];
let thId = c.getAttribute('id');
if (!thId || thId === '') {
// thId = this.prfxGridTh + n + '_' + tf.id;
thId = `${this.prfxGridTh + n}_${tf.id}`;
c.setAttribute('id', thId);
}