Skip to content
This repository was archived by the owner on May 30, 2021. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
147710e
fix tests
johanneswilm Mar 29, 2018
eab7b69
implement paging=false
johanneswilm Mar 29, 2018
b42be7a
implement scrollY
johanneswilm Mar 29, 2018
623b625
change link in test
johanneswilm Mar 29, 2018
4a0a4f8
deal with window resize
johanneswilm Mar 29, 2018
10c3d38
activate headings when adding through insert
johanneswilm Mar 30, 2018
f54de5d
set border-collapse to separate to enable padding
johanneswilm Mar 30, 2018
5f0b1b2
don't mess with activeHeadings if not necessary
johanneswilm Mar 30, 2018
9caf141
fix hidden option
johanneswilm Mar 31, 2018
466e7ed
fix sort direction, and make sort have same column index as rest of app
johanneswilm Mar 31, 2018
c20da68
respect hide header rules, even if table is empty
johanneswilm Apr 2, 2018
575bcb2
refactor to unduplicate code
johanneswilm Apr 2, 2018
e5f66af
set no rows message also if table is entirely empty
johanneswilm Apr 2, 2018
a7cf525
Merge branch 'master' of github.com:Mobius1/Vanilla-DataTables
johanneswilm Apr 28, 2018
a0239a4
Fix: Columns rebuild row.cloneNode: TD's duplicated (TD²)
sudwebdesign Apr 30, 2018
f59faa7
same thing ?
sudwebdesign Apr 30, 2018
6fe9fc5
manually encode "#" when exporting to csv
ry4nolson Jun 13, 2018
70e6131
Fix for the fix for #29: handle null/undefined cells
huyz Jun 27, 2018
a7914f3
We will update the chart even if there are no search results so that …
Jul 9, 2018
9e5710c
Added minified version of datatables
Jul 9, 2018
cc9442d
Fixing the download link functionality
Jul 10, 2018
d4769cc
Merge branch 'bugfix/search_no_results_minified' of github.com:espieg…
johanneswilm Aug 16, 2018
bc44754
remove dist files from repo
johanneswilm Aug 16, 2018
97d3a77
Merge branch 'master' of github.com:huyz/Vanilla-DataTables
johanneswilm Aug 16, 2018
1f4959c
Merge branch 'patch-1' of github.com:ry4nolson/Vanilla-DataTables
johanneswilm Aug 16, 2018
5181aa2
Merge branch 'master' of github.com:sudwebdesign/Vanilla-DataTables
johanneswilm Aug 16, 2018
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
dist/
9 changes: 8 additions & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,18 @@ module.exports = function (grunt) {
qunit: {
all: ['tests/index.html']
},
uglify: {
my_target: {
files: {
'dist/vanilla-dataTables.min.js': ['src/vanilla-dataTables.js']
}
}
}
});

grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-qunit');

grunt.loadNpmTasks('grunt-contrib-uglify');

grunt.registerTask('test', ['jshint', 'qunit']);
grunt.registerTask('default', ['test']);
Expand Down
9 changes: 0 additions & 9 deletions dist/vanilla-dataTables.min.css

This file was deleted.

10 changes: 0 additions & 10 deletions dist/vanilla-dataTables.min.js

This file was deleted.

11 changes: 6 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,12 @@
"homepage": "https://github.com/Mobius1/Vanilla-DataTables#readme",
"devDependencies": {
"grunt": "^1.0.1",
"grunt-contrib-qunit": "^1.3.0" ,
"qunit": "~0.5.15",
"grunt-contrib-connect": "~0.1.2",
"grunt-contrib-jshint": "^1.0.0",
"qunitjs": "^2.0.1",
"grunt-saucelabs": "~4.0.2",
"grunt-contrib-connect": "~0.1.2"
"grunt-contrib-qunit": "^1.3.0",
"grunt-contrib-uglify": "^3.3.0",
"grunt-saucelabs": "~4.0.2",
"qunit": "~0.5.15",
"qunitjs": "^2.0.1"
}
}
3 changes: 2 additions & 1 deletion src/vanilla-dataTables.css
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@
max-width: 100%;
width: 100%;
border-spacing: 0;
border-collapse: separate;
}

.dataTable-table > tbody > tr > td,
Expand Down Expand Up @@ -175,4 +176,4 @@
clear: both;
content: " ";
display: table;
}
}
Loading