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

Commit

Permalink
v1.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Mobius1 committed Aug 10, 2017
1 parent 30f9309 commit 53f3a7c
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vanilla-datatables",
"version": "1.3.1",
"version": "1.3.2",
"ignore": [
".gitattributes",
"README.md"
Expand Down
2 changes: 1 addition & 1 deletion dist/vanilla-dataTables.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions dist/vanilla-dataTables.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vanilla-datatables",
"version": "1.3.1",
"version": "1.3.2",
"description": "A lightweight, dependency-free javascript HTML table plugin.",
"main": "vanilla-dataTables.min.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/vanilla-dataTables.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Copyright (c) 2015-2017 Karl Saunders (http://mobius.ovh)
* Licensed under MIT (http://www.opensource.org/licenses/mit-license.php)
*
* Version: 1.3.1
* Version: 1.3.2
*
*/

Expand Down
4 changes: 2 additions & 2 deletions src/vanilla-dataTables.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Copyright (c) 2015-2017 Karl Saunders (http://mobius.ovh)
* Licensed under MIT (http://www.opensource.org/licenses/mit-license.php)
*
* Version: 1.3.1
* Version: 1.3.2
*
*/
(function(root, factory) {
Expand Down Expand Up @@ -869,7 +869,7 @@
that.emit("datatable.ajax.loaded", e, xhr);

if (xhr.status === 200) {
var data = ajax.load.call(that, xhr) || xhr.responseText;
var data = ajax.load ? ajax.load.call(that, xhr) : xhr.responseText;
var type = isJson(data) ? "json" : false;

that.import({
Expand Down

0 comments on commit 53f3a7c

Please sign in to comment.