Skip to content

Commit

Permalink
fix limit filter
Browse files Browse the repository at this point in the history
  • Loading branch information
thehitechpanky committed Apr 18, 2020
1 parent db84447 commit 7f95763
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ Bootstrap

# CDN

<script src="https://cdn.jsdelivr.net/gh/TaxHeal-in/[email protected].2/html.js"></script>
<script src="https://cdn.jsdelivr.net/gh/TaxHeal-in/[email protected].2/table.js"></script>
<script src="https://cdn.jsdelivr.net/gh/TaxHeal-in/[email protected].3/html.js"></script>
<script src="https://cdn.jsdelivr.net/gh/TaxHeal-in/[email protected].3/table.js"></script>

# How to use

Expand Down
4 changes: 2 additions & 2 deletions table.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,14 +57,14 @@ class DynamicTable {
_addLimitRowNode() {
let rowNode = this._getNode(`div`, { className: `row` });
this.divNode.appendChild(rowNode);
this._addLimitFormNode();
this._addLimitFormNode(rowNode);
let colNode = this._getNode(`div`, { className: `col text-right` });
rowNode.appendChild(colNode);
colNode.appendChild(this.countNode);
return rowNode;
}

_addLimitFormNode() {
_addLimitFormNode(rowNode) {
let { addLimit } = this.paramObject;
let colNode = this._getNode(`div`, { className: `col text-right` });
rowNode.appendChild(colNode);
Expand Down

0 comments on commit 7f95763

Please sign in to comment.