Skip to content

Commit 58133eb

Browse files
committed
update assets
1 parent 046a6a3 commit 58133eb

File tree

15 files changed

+222
-31
lines changed

15 files changed

+222
-31
lines changed

app/assets/javascripts/datatables/extensions/AutoFill/dataTables.autoFill.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
/*! AutoFill 2.3.0
1+
/*! AutoFill 2.3.1
22
* ©2008-2018 SpryMedia Ltd - datatables.net/license
33
*/
44

55
/**
66
* @summary AutoFill
77
* @description Add Excel like click and drag auto-fill options to DataTables
8-
* @version 2.3.0
8+
* @version 2.3.1
99
* @file dataTables.autoFill.js
1010
* @author SpryMedia Ltd (www.sprymedia.co.uk)
1111
* @contact www.sprymedia.co.uk/contact
@@ -1089,7 +1089,7 @@ AutoFill.actions = {
10891089
* @static
10901090
* @type String
10911091
*/
1092-
AutoFill.version = '2.3.0';
1092+
AutoFill.version = '2.3.1';
10931093

10941094

10951095
/**
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
/*! Semanic UI styling wrapper for ColReorder
2+
* ©2018 SpryMedia Ltd - datatables.net/license
3+
*/
4+
5+
(function( factory ){
6+
if ( typeof define === 'function' && define.amd ) {
7+
// AMD
8+
define( ['jquery', 'datatables.net-se', 'datatables.net-colreorder'], function ( $ ) {
9+
return factory( $, window, document );
10+
} );
11+
}
12+
else if ( typeof exports === 'object' ) {
13+
// CommonJS
14+
module.exports = function (root, $) {
15+
if ( ! root ) {
16+
root = window;
17+
}
18+
19+
if ( ! $ || ! $.fn.dataTable ) {
20+
$ = require('datatables.net-se')(root, $).$;
21+
}
22+
23+
if ( ! $.fn.dataTable.ColReorder ) {
24+
require('datatables.net-colreorder')(root, $);
25+
}
26+
27+
return factory( $, root, root.document );
28+
};
29+
}
30+
else {
31+
// Browser
32+
factory( jQuery, window, document );
33+
}
34+
}(function( $, window, document, undefined ) {
35+
36+
return $.fn.dataTable;
37+
38+
}));

app/assets/javascripts/datatables/extensions/ColReorder/dataTables.colReorder.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
/*! ColReorder 1.5.0
1+
/*! ColReorder 1.5.1
22
* ©2010-2018 SpryMedia Ltd - datatables.net/license
33
*/
44

55
/**
66
* @summary ColReorder
77
* @description Provide the ability to reorder columns in a DataTable
8-
* @version 1.5.0
8+
* @version 1.5.1
99
* @file dataTables.colReorder.js
1010
* @author SpryMedia Ltd (www.sprymedia.co.uk)
1111
* @contact www.sprymedia.co.uk/contact
@@ -1306,7 +1306,7 @@ ColReorder.defaults = {
13061306
* @type String
13071307
* @default As code
13081308
*/
1309-
ColReorder.version = "1.5.0";
1309+
ColReorder.version = "1.5.1";
13101310

13111311

13121312

app/assets/javascripts/datatables/extensions/FixedColumns/dataTables.fixedColumns.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
/*! FixedColumns 3.2.5
1+
/*! FixedColumns 3.2.6
22
* ©2010-2018 SpryMedia Ltd - datatables.net/license
33
*/
44

55
/**
66
* @summary FixedColumns
77
* @description Freeze columns in place on a scrolling DataTable
8-
* @version 3.2.5
8+
* @version 3.2.6
99
* @file dataTables.fixedColumns.js
1010
* @author SpryMedia Ltd (www.sprymedia.co.uk)
1111
* @contact www.sprymedia.co.uk/contact
@@ -1525,7 +1525,7 @@ FixedColumns.defaults = /** @lends FixedColumns.defaults */{
15251525
* @default See code
15261526
* @static
15271527
*/
1528-
FixedColumns.version = "3.2.5";
1528+
FixedColumns.version = "3.2.6";
15291529

15301530

15311531

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
/*! Semanic UI styling wrapper for FixedColumns
2+
* ©2018 SpryMedia Ltd - datatables.net/license
3+
*/
4+
5+
(function( factory ){
6+
if ( typeof define === 'function' && define.amd ) {
7+
// AMD
8+
define( ['jquery', 'datatables.net-se', 'datatables.net-fixedcolumns'], function ( $ ) {
9+
return factory( $, window, document );
10+
} );
11+
}
12+
else if ( typeof exports === 'object' ) {
13+
// CommonJS
14+
module.exports = function (root, $) {
15+
if ( ! root ) {
16+
root = window;
17+
}
18+
19+
if ( ! $ || ! $.fn.dataTable ) {
20+
$ = require('datatables.net-se')(root, $).$;
21+
}
22+
23+
if ( ! $.fn.dataTable.FixedColumns ) {
24+
require('datatables.net-fixedcolumns')(root, $);
25+
}
26+
27+
return factory( $, root, root.document );
28+
};
29+
}
30+
else {
31+
// Browser
32+
factory( jQuery, window, document );
33+
}
34+
}(function( $, window, document, undefined ) {
35+
36+
return $.fn.dataTable;
37+
38+
}));

app/assets/javascripts/datatables/extensions/FixedHeader/dataTables.fixedHeader.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
/*! FixedHeader 3.1.4
1+
/*! FixedHeader 3.1.5
22
* ©2009-2018 SpryMedia Ltd - datatables.net/license
33
*/
44

55
/**
66
* @summary FixedHeader
77
* @description Fix a table's header or footer, so it is always visible while
88
* scrolling
9-
* @version 3.1.4
9+
* @version 3.1.5
1010
* @file dataTables.fixedHeader.js
1111
* @author SpryMedia Ltd (www.sprymedia.co.uk)
1212
* @contact www.sprymedia.co.uk/contact
@@ -590,7 +590,7 @@ $.extend( FixedHeader.prototype, {
590590
* @type {String}
591591
* @static
592592
*/
593-
FixedHeader.version = "3.1.4";
593+
FixedHeader.version = "3.1.5";
594594

595595
/**
596596
* Defaults
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
/*! Semanic UI styling wrapper for FixedHeader
2+
* ©2018 SpryMedia Ltd - datatables.net/license
3+
*/
4+
5+
(function( factory ){
6+
if ( typeof define === 'function' && define.amd ) {
7+
// AMD
8+
define( ['jquery', 'datatables.net-se', 'datatables.net-fixedheader'], function ( $ ) {
9+
return factory( $, window, document );
10+
} );
11+
}
12+
else if ( typeof exports === 'object' ) {
13+
// CommonJS
14+
module.exports = function (root, $) {
15+
if ( ! root ) {
16+
root = window;
17+
}
18+
19+
if ( ! $ || ! $.fn.dataTable ) {
20+
$ = require('datatables.net-se')(root, $).$;
21+
}
22+
23+
if ( ! $.fn.dataTable.FixedHeader ) {
24+
require('datatables.net-fixedheader')(root, $);
25+
}
26+
27+
return factory( $, root, root.document );
28+
};
29+
}
30+
else {
31+
// Browser
32+
factory( jQuery, window, document );
33+
}
34+
}(function( $, window, document, undefined ) {
35+
36+
return $.fn.dataTable;
37+
38+
}));

app/assets/javascripts/datatables/extensions/KeyTable/dataTables.keyTable.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
/*! KeyTable 2.4.0
1+
/*! KeyTable 2.4.1
22
* ©2009-2018 SpryMedia Ltd - datatables.net/license
33
*/
44

55
/**
66
* @summary KeyTable
77
* @description Spreadsheet like keyboard navigation for DataTables
8-
* @version 2.4.0
8+
* @version 2.4.1
99
* @file dataTables.keyTable.js
1010
* @author SpryMedia Ltd (www.sprymedia.co.uk)
1111
* @contact www.sprymedia.co.uk/contact
@@ -1056,7 +1056,7 @@ KeyTable.defaults = {
10561056

10571057

10581058

1059-
KeyTable.version = "2.4.0";
1059+
KeyTable.version = "2.4.1";
10601060

10611061

10621062
$.fn.dataTable.KeyTable = KeyTable;
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
/*! Semanic UI styling wrapper for KeyTable
2+
* ©2018 SpryMedia Ltd - datatables.net/license
3+
*/
4+
5+
(function( factory ){
6+
if ( typeof define === 'function' && define.amd ) {
7+
// AMD
8+
define( ['jquery', 'datatables.net-se', 'datatables.net-keytable'], function ( $ ) {
9+
return factory( $, window, document );
10+
} );
11+
}
12+
else if ( typeof exports === 'object' ) {
13+
// CommonJS
14+
module.exports = function (root, $) {
15+
if ( ! root ) {
16+
root = window;
17+
}
18+
19+
if ( ! $ || ! $.fn.dataTable ) {
20+
$ = require('datatables.net-se')(root, $).$;
21+
}
22+
23+
if ( ! $.fn.dataTable.KeyTable ) {
24+
require('datatables.net-keytable')(root, $);
25+
}
26+
27+
return factory( $, root, root.document );
28+
};
29+
}
30+
else {
31+
// Browser
32+
factory( jQuery, window, document );
33+
}
34+
}(function( $, window, document, undefined ) {
35+
36+
return $.fn.dataTable;
37+
38+
}));

app/assets/javascripts/datatables/extensions/Responsive/dataTables.responsive.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
/*! Responsive 2.2.2
1+
/*! Responsive 2.2.3
22
* 2014-2018 SpryMedia Ltd - datatables.net/license
33
*/
44

55
/**
66
* @summary Responsive
77
* @description Responsive tables plug-in for DataTables
8-
* @version 2.2.2
8+
* @version 2.2.3
99
* @file dataTables.responsive.js
1010
* @author SpryMedia Ltd (www.sprymedia.co.uk)
1111
* @contact www.sprymedia.co.uk/contact
@@ -1362,7 +1362,7 @@ Api.registerPlural( 'columns().responsiveHidden()', 'column().responsiveHidden()
13621362
* @name Responsive.version
13631363
* @static
13641364
*/
1365-
Responsive.version = '2.2.2';
1365+
Responsive.version = '2.2.3';
13661366

13671367

13681368
$.fn.dataTable.Responsive = Responsive;

0 commit comments

Comments
 (0)