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

Commit

Permalink
Replace underscore alias #14
Browse files Browse the repository at this point in the history
  • Loading branch information
Mobius1 committed May 18, 2017
1 parent a970f6e commit 4914ea3
Show file tree
Hide file tree
Showing 5 changed files with 169 additions and 178 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ npm install vanilla-datatables --save
Add the css and js files from the CDN:

```html
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/vanilla-datatables/1.1.6/vanilla-dataTables.min.css">
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/vanilla-datatables/1.1.8/vanilla-dataTables.min.css">

<script type="text/javascript" src="https://cdn.jsdelivr.net/vanilla-datatables/1.1.6/vanilla-dataTables.min.js"></script>
<script type="text/javascript" src="https://cdn.jsdelivr.net/vanilla-datatables/1.1.8/vanilla-dataTables.min.js"></script>
```

The JS file should be included before any scripts that call the plugin.
Expand All @@ -51,8 +51,8 @@ You can also pass the options object as the second paramater:
```javascript
var dataTable = new DataTable("#myTable", {
searchable: false,
fixedHeight: true,
...
fixedHeight: true,
...
});
```

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.1.8",
"version": "1.1.9",
"ignore": [
".gitattributes",
"README.md"
Expand Down
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.1.8",
"version": "1.1.9",
"description": "A lightweight, dependency-free javascript HTML table plugin.",
"main": "vanilla-dataTables.min.js",
"scripts": {
Expand Down
Loading

0 comments on commit 4914ea3

Please sign in to comment.