Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: DataTables/Dist-DataTables
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: ea6e9fd58fb81979e535f933ece03ef282f59620
Choose a base ref
...
head repository: DataTables/Dist-DataTables
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: d67ca5d8aa73283f659ee882a979f87f941e3834
Choose a head ref
Loading
Showing with 6,288 additions and 785 deletions.
  1. +1 −0 .gitignore
  2. +3 −1 License.txt
  3. +9 −3 Readme.md
  4. +29 −0 composer.json
  5. +6 −3 datatables.json
  6. +578 −600 js/jquery.dataTables.js
  7. +185 −164 js/jquery.dataTables.min.js
  8. +28 −0 nuget.nuspec
  9. +23 −0 package-lock.json
  10. +25 −14 package.json
  11. +2,687 −0 types.d.ts
  12. +2,714 −0 types/types.d.ts
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.lock
4 changes: 3 additions & 1 deletion License.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
The MIT License (MIT)

Copyright SpryMedia Limited and other contributors
http://datatables.net

@@ -17,4 +19,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
THE SOFTWARE.
12 changes: 9 additions & 3 deletions Readme.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# DataTables for jQuery
# DataTables for jQuery

This package contains distribution files for the [DataTables library](https://datatables.net) for [jQuery](http://jquery.com/). Only the core software for this library is contained in this package - to be correctly styled, a styling package for DataTables must also be included. Styling options include DataTable's native styling, [Bootstrap](http://getbootstrap.com) and [Foundation](http://foundation.zurb.com/).

@@ -9,19 +9,25 @@ DataTables is a table enhancing library which adds features such as paging, orde

### Browser

For inclusion of this library using a standard `<script>` tag, rather than using this package, it is recommended that you use the [DataTables download builder](//datatables.net/download) which can create CDN or locally hosted packages for you, will all dependencies satisfied.
For inclusion of this library using a standard `<script>` tag, rather than using this package, it is recommended that you use the [DataTables download builder](//datatables.net/download) which can create CDN or locally hosted packages \for you, will all dependencies satisfied.

### npm

```
npm install datatables.net
```

ES3 Syntax
```
var $ = require( 'jquery' );
require( 'datatables.net' )( window, $ );
```

ES6 Syntax
```
import 'datatables.net'
```

### bower

```
@@ -32,7 +38,7 @@ bower install --save datatables.net

## Documentation

Full documentation of the DataTables options, API and plug-in interface are available on the DOCS_LINK. The site also contains information on the wide variety of plug-ins that are available for DataTables, which can be used to enhance and customise your table even further.
Full documentation of the DataTables options, API and plug-in interface are available on the [website](https://datatables.net/reference/index). The site also contains information on the wide variety of plug-ins that are available for DataTables, which can be used to enhance and customise your table even further.


## Bug / Support
29 changes: 29 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"version": "1.10.25",
"name": "datatables.net/datatables.net",
"description": "DataTables is a plug-in for the jQuery Javascript library. It is a highly flexible tool, based upon the foundations of progressive enhancement, which will add advanced interaction controls to any HTML table. This is jQuery DataTables",
"support": {
"forum": "https://datatables.net/forums",
"source": "https://github.com/DataTables/Dist-DataTables"
},
"homepage": "http://www.datatables.net/",
"authors": [
{
"name": "SpryMedia",
"homepage": "https://datatables.net"
}
],
"license": [
"MIT"
],
"prefer-stable": true,
"minimum-stability": "dev",
"keywords": [
"Datatables",
"jQuery",
"table"
],
"require": {
"components/jquery": ">=1.7"
}
}
9 changes: 6 additions & 3 deletions datatables.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
{
"css": [],
"js": [
"js/jquery.dataTables.js",
"js/jquery.dataTables.min.js"
],
"css": [],
"types": [
"types/types.d.ts"
],
"src-repo": "http://github.com/DataTables/DataTablesSrc",
"last-sync": "561f618389f1dc30eef9c4622a5d32a1c6f73d31",
"last-tag": "1.10.21"
"last-tag": "1.11.3",
"last-sync": "79772b97fe6d45af67057cc13fa6af3f00c873ea"
}
Loading