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

Commit

Permalink
v1.6.9, references #34
Browse files Browse the repository at this point in the history
  • Loading branch information
Mobius1 committed Oct 17, 2017
1 parent 9f52156 commit d90c42f
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 27 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ A lightweight, extendable, dependency-free javascript HTML table plugin. Similar
* Extentable with custom plugins [See the wiki](https://github.com/Mobius1/Vanilla-DataTables/wiki/Plugins) (v1.6.0 and above)


[Documentation](https://github.com/Mobius1/Vanilla-DataTables/wiki) | [Latest Version](https://github.com/Mobius1/Vanilla-DataTables/releases/tag/1.6.8)
[Documentation](https://github.com/Mobius1/Vanilla-DataTables/wiki) | [Latest Version](https://github.com/Mobius1/Vanilla-DataTables/releases/tag/1.6.9)

---

Expand Down
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.6.8",
"version": "1.6.9",
"main": "src/vanilla-dataTables.js",
"ignore": [
".gitattributes",
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.6.8",
"version": "1.6.9",
"description": "A lightweight, dependency-free javascript HTML table plugin.",
"main": "src/vanilla-dataTables.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.6.8
* Version: 1.6.9
*
*/

Expand Down
28 changes: 9 additions & 19 deletions src/vanilla-dataTables.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,30 +4,20 @@
* Copyright (c) 2015-2017 Karl Saunders (http://mobius.ovh)
* Licensed under MIT (http://www.opensource.org/licenses/mit-license.php)
*
* Version: 1.6.8
* Version: 1.6.9
*
*/
(function (root, factory) {
"use strict";
(function(root, factory) {
var plugin = "DataTable";

if ( typeof define === 'function' && define.amd ) {
// AMD
define( [], function () {
return factory( plugin );
} );
}
else if ( typeof exports === 'object' ) {
// CommonJS
module.exports = function () {
return factory( plugin );
};
}
else {
// Browser
factory( plugin );
if (typeof exports === "object") {
modules.exports = factory(plugin);
} else if (typeof define === "function" && define.amd) {
define([], factory(plugin));
} else {
root[plugin] = factory(plugin);
}
})(this, function (plugin) {
})(typeof global !== 'undefined' ? global : this.window || this.global, function(plugin) {
"use strict";
var win = window,
doc = document,
Expand Down
2 changes: 1 addition & 1 deletion tests/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"9557",
"07/18/2017",
"[email protected]",
"0800 106980"
"0800 1.6.90"
],
[
"Kyra S. Baldwin",
Expand Down

0 comments on commit d90c42f

Please sign in to comment.