prepare dist

This commit is contained in:
koalyptus 2019-09-06 14:15:54 +10:00
parent 2c7ad88346
commit 3004963058
10 changed files with 18932 additions and 2014 deletions

4
dist/starter.html vendored
View File

@ -1,10 +1,10 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>tablefilter v0.6.97 - Starter</title>
<title>tablefilter v0.6.98 - Starter</title>
</head>
<body>
<h1>tablefilter v0.6.97</h1>
<h1>tablefilter v0.6.98</h1>

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

4012
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
{
"name": "tablefilter",
"version": "0.6.97",
"version": "0.6.98",
"description": "A Javascript library making HTML tables filterable and a bit more",
"license": "MIT",
"author": {

View File

@ -513,6 +513,7 @@ AdapterSortableTable.meta = {altName: 'sort'};
//Converters
function ipAddress(value) {
let vals = value.split('.');
// eslint-disable-next-line no-unused-vars
for (let x in vals) {
let val = vals[x];
while (3 > val.length) {