File tree Expand file tree Collapse file tree 3 files changed +9
-9
lines changed Expand file tree Collapse file tree 3 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 1
- /*! Checkboxes 1.1.2
1
+ /*! Checkboxes 1.1.3
2
2
* Copyright (c) Gyrocode (www.gyrocode.com)
3
3
* License: MIT License
4
4
*/
5
5
6
6
/**
7
7
* @summary Checkboxes
8
8
* @description Checkboxes extension for jQuery DataTables
9
- * @version 1.1.2
9
+ * @version 1.1.3
10
10
* @file dataTables.checkboxes.js
11
11
* @author Gyrocode (http://www.gyrocode.com/projects/jquery-datatables-checkboxes/)
12
12
* @contact http://www.gyrocode.com/contacts
@@ -51,7 +51,7 @@ var DataTable = $.fn.dataTable;
51
51
* @class
52
52
* @param {object } settings DataTables settings object for the host table
53
53
* @requires jQuery 1.7+
54
- * @requires DataTables 1.10.0 +
54
+ * @requires DataTables 1.10.8 +
55
55
*
56
56
* @example
57
57
* $('#example').DataTable({
@@ -64,9 +64,9 @@ var DataTable = $.fn.dataTable;
64
64
* });
65
65
*/
66
66
var Checkboxes = function ( settings ) {
67
- // Sanity check that we are using DataTables 1.10 or newer
68
- if ( ! DataTable . versionCheck || ! DataTable . versionCheck ( '1.10.0 ' ) ) {
69
- throw 'DataTables Checkboxes requires DataTables 1.10.0 or newer' ;
67
+ // Sanity check that we are using DataTables 1.10.8 or newer
68
+ if ( ! DataTable . versionCheck || ! DataTable . versionCheck ( '1.10.8 ' ) ) {
69
+ throw 'DataTables Checkboxes requires DataTables 1.10.8 or newer' ;
70
70
}
71
71
72
72
this . s = {
You can’t perform that action at this time.
0 commit comments