Skip to content
This repository has been archived by the owner on Sep 17, 2023. It is now read-only.

Commit

Permalink
Merge pull request #1 from PerryRylance/Perry
Browse files Browse the repository at this point in the history
Perry
  • Loading branch information
PerryRylance committed Sep 5, 2020
2 parents 547371b + ac46196 commit e32ff66
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
3 changes: 3 additions & 0 deletions DataTable.js
Expand Up @@ -65,6 +65,9 @@ $(window).on("load", function(event) {

$("table.perry-rylance-datatable").each(function(index, el) {

if($(el).attr("data-auto-initialize") == "false")
return;

el.dataTable = DataTable.createInstance(el);

});
Expand Down
28 changes: 28 additions & 0 deletions package.json
@@ -0,0 +1,28 @@
{
"name": "@perry-rylance/data-table",
"version": "1.0.0",
"description": "This library handles client and server side record fetching, including search, sort and pagination.",
"main": "DataTable.js",
"type": "module",
"directories": {
"lib": "lib"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PerryRylance/DataTable.js.git"
},
"keywords": [
"ES6",
"DataTable",
"Client"
],
"author": "Perry Rylance <contact@perryrylance.com> (https://perryrylance.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/PerryRylance/DataTable.js/issues"
},
"homepage": "https://github.com/PerryRylance/DataTable.js#readme"
}

0 comments on commit e32ff66

Please sign in to comment.