Skip to content
This repository was archived by the owner on May 30, 2021. It is now read-only.

Commit 5c75523

Browse files
author
Mobius1
committed
v1.6.13, implements #54
1 parent 826a055 commit 5c75523

File tree

7 files changed

+12
-8
lines changed

7 files changed

+12
-8
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ A lightweight, extendable, dependency-free javascript HTML table plugin. Similar
2626
* Extentable with custom plugins [See the wiki](https://github.com/Mobius1/Vanilla-DataTables/wiki/Plugins) (v1.6.0 and above)
2727

2828

29-
[Documentation](https://github.com/Mobius1/Vanilla-DataTables/wiki) | [Latest Version](https://github.com/Mobius1/Vanilla-DataTables/releases/tag/1.6.12)
29+
[Documentation](https://github.com/Mobius1/Vanilla-DataTables/wiki) | [Latest Version](https://github.com/Mobius1/Vanilla-DataTables/releases/tag/1.6.13)
3030

3131
---
3232

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vanilla-datatables",
3-
"version": "1.6.12",
3+
"version": "1.6.13",
44
"main": "src/vanilla-dataTables.js",
55
"ignore": [
66
".gitattributes",

dist/vanilla-dataTables.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/vanilla-dataTables.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vanilla-datatables",
3-
"version": "1.6.12",
3+
"version": "1.6.13",
44
"description": "A lightweight, dependency-free javascript HTML table plugin.",
55
"main": "src/vanilla-dataTables.js",
66
"scripts": {

src/vanilla-dataTables.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* Copyright (c) 2015-2017 Karl Saunders (http://mobius.ovh)
55
* Licensed under MIT (http://www.opensource.org/licenses/mit-license.php)
66
*
7-
* Version: 1.6.12
7+
* Version: 1.6.13
88
*
99
*/
1010

src/vanilla-dataTables.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* Copyright (c) 2015-2017 Karl Saunders (http://mobius.ovh)
55
* Licensed under MIT (http://www.opensource.org/licenses/mit-license.php)
66
*
7-
* Version: 1.6.12
7+
* Version: 1.6.13
88
*
99
*/
1010
(function(root, factory) {
@@ -1667,6 +1667,8 @@
16671667
* @return {Void}
16681668
*/
16691669
proto.update = function () {
1670+
classList.remove(this.wrapper, "dataTable-empty");
1671+
16701672
this.paginate(this);
16711673
this.render("page");
16721674

@@ -2354,6 +2356,8 @@
23542356
colspan = this.data[0].cells.length;
23552357
}
23562358

2359+
classList.add(this.wrapper, "dataTable-empty");
2360+
23572361
this.clear(
23582362
createElement("tr", {
23592363
html: '<td class="dataTables-empty" colspan="' +

0 commit comments

Comments
 (0)