jquery-datatables 1.10.18 → 1.10.19

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (20) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/javascripts/datatables/extensions/AutoFill/dataTables.autoFill.js +3 -3
  3. data/app/assets/javascripts/datatables/extensions/ColReorder/colReorder.semanticui.js +38 -0
  4. data/app/assets/javascripts/datatables/extensions/ColReorder/dataTables.colReorder.js +3 -3
  5. data/app/assets/javascripts/datatables/extensions/FixedColumns/dataTables.fixedColumns.js +3 -3
  6. data/app/assets/javascripts/datatables/extensions/FixedColumns/fixedColumns.semanticui.js +38 -0
  7. data/app/assets/javascripts/datatables/extensions/FixedHeader/dataTables.fixedHeader.js +3 -3
  8. data/app/assets/javascripts/datatables/extensions/FixedHeader/fixedHeader.semanticui.js +38 -0
  9. data/app/assets/javascripts/datatables/extensions/KeyTable/dataTables.keyTable.js +3 -3
  10. data/app/assets/javascripts/datatables/extensions/KeyTable/keyTable.semanticui.js +38 -0
  11. data/app/assets/javascripts/datatables/extensions/Responsive/dataTables.responsive.js +3 -3
  12. data/app/assets/javascripts/datatables/extensions/RowReorder/dataTables.rowReorder.js +3 -3
  13. data/app/assets/javascripts/datatables/extensions/RowReorder/rowReorder.semanticui.js +38 -0
  14. data/app/assets/javascripts/datatables/extensions/Scroller/dataTables.scroller.js +3 -3
  15. data/app/assets/javascripts/datatables/extensions/Select/dataTables.select.js +3 -3
  16. data/app/assets/javascripts/datatables/jquery.dataTables.js +5 -4
  17. data/lib/generators/jquery/datatables/templates/views/index.html.haml +6 -6
  18. data/lib/generators/jquery/datatables/templates/views/index.html.slim +2 -2
  19. data/lib/jquery-datatables/version.rb +1 -1
  20. metadata +7 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b570f797c94b675a1ca66f34cb200644090bd0d97e550461acac0ca697da18c1
4
- data.tar.gz: 732f86dcb5f363428d0f811d3b350595219b1c86a46641d8325ae0c68e46ecbd
3
+ metadata.gz: ab16a6374f0e07f531c50c9b3e32d5c3cd2ea263599f02f36f603518380538c1
4
+ data.tar.gz: 8a58992e99176083ea2249655c01a94dd327fbd9a5994f7581385e41f5ed6c16
5
5
  SHA512:
6
- metadata.gz: f98304dba880ead665a5c353c41e87bfb274f817eab977ad5f2c8e380348806e835f984dd7ae5efa26e43f7eecd0c6c761c6930849dedfffa2aee7dc41c068fb
7
- data.tar.gz: da9cf41ebac6116d1971503c7365daded1a95df4314948f77e99f39ea9a39cd9892d0cb5d37fe278e6b3f59999746c8ad56b1886a09167d9e1c1d47201e32df6
6
+ metadata.gz: 18f1fdb5f70724dcd440a762423f4c66028e6201fc8a2ac19bab52d133ac83dc3e531d3aa2d962bc8a2fb3962eb7570c99fa24be41ebbe649539de91cad3c1cc
7
+ data.tar.gz: 9a52e9755880fcd7a6b2114cf5609d91a9f8afca672a1bb4a9708665101f30cf82d97d08395af642ad3ddbf5ade5ee8b7d241efc3fc5a85ed051eaf6b7c82671
@@ -1,11 +1,11 @@
1
- /*! AutoFill 2.3.0
1
+ /*! AutoFill 2.3.1
2
2
  * ©2008-2018 SpryMedia Ltd - datatables.net/license
3
3
  */
4
4
 
5
5
  /**
6
6
  * @summary AutoFill
7
7
  * @description Add Excel like click and drag auto-fill options to DataTables
8
- * @version 2.3.0
8
+ * @version 2.3.1
9
9
  * @file dataTables.autoFill.js
10
10
  * @author SpryMedia Ltd (www.sprymedia.co.uk)
11
11
  * @contact www.sprymedia.co.uk/contact
@@ -1089,7 +1089,7 @@ AutoFill.actions = {
1089
1089
  * @static
1090
1090
  * @type String
1091
1091
  */
1092
- AutoFill.version = '2.3.0';
1092
+ AutoFill.version = '2.3.1';
1093
1093
 
1094
1094
 
1095
1095
  /**
@@ -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
+ }));
@@ -1,11 +1,11 @@
1
- /*! ColReorder 1.5.0
1
+ /*! ColReorder 1.5.1
2
2
  * ©2010-2018 SpryMedia Ltd - datatables.net/license
3
3
  */
4
4
 
5
5
  /**
6
6
  * @summary ColReorder
7
7
  * @description Provide the ability to reorder columns in a DataTable
8
- * @version 1.5.0
8
+ * @version 1.5.1
9
9
  * @file dataTables.colReorder.js
10
10
  * @author SpryMedia Ltd (www.sprymedia.co.uk)
11
11
  * @contact www.sprymedia.co.uk/contact
@@ -1306,7 +1306,7 @@ ColReorder.defaults = {
1306
1306
  * @type String
1307
1307
  * @default As code
1308
1308
  */
1309
- ColReorder.version = "1.5.0";
1309
+ ColReorder.version = "1.5.1";
1310
1310
 
1311
1311
 
1312
1312
 
@@ -1,11 +1,11 @@
1
- /*! FixedColumns 3.2.5
1
+ /*! FixedColumns 3.2.6
2
2
  * ©2010-2018 SpryMedia Ltd - datatables.net/license
3
3
  */
4
4
 
5
5
  /**
6
6
  * @summary FixedColumns
7
7
  * @description Freeze columns in place on a scrolling DataTable
8
- * @version 3.2.5
8
+ * @version 3.2.6
9
9
  * @file dataTables.fixedColumns.js
10
10
  * @author SpryMedia Ltd (www.sprymedia.co.uk)
11
11
  * @contact www.sprymedia.co.uk/contact
@@ -1525,7 +1525,7 @@ FixedColumns.defaults = /** @lends FixedColumns.defaults */{
1525
1525
  * @default See code
1526
1526
  * @static
1527
1527
  */
1528
- FixedColumns.version = "3.2.5";
1528
+ FixedColumns.version = "3.2.6";
1529
1529
 
1530
1530
 
1531
1531
 
@@ -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
+ }));
@@ -1,4 +1,4 @@
1
- /*! FixedHeader 3.1.4
1
+ /*! FixedHeader 3.1.5
2
2
  * ©2009-2018 SpryMedia Ltd - datatables.net/license
3
3
  */
4
4
 
@@ -6,7 +6,7 @@
6
6
  * @summary FixedHeader
7
7
  * @description Fix a table's header or footer, so it is always visible while
8
8
  * scrolling
9
- * @version 3.1.4
9
+ * @version 3.1.5
10
10
  * @file dataTables.fixedHeader.js
11
11
  * @author SpryMedia Ltd (www.sprymedia.co.uk)
12
12
  * @contact www.sprymedia.co.uk/contact
@@ -590,7 +590,7 @@ $.extend( FixedHeader.prototype, {
590
590
  * @type {String}
591
591
  * @static
592
592
  */
593
- FixedHeader.version = "3.1.4";
593
+ FixedHeader.version = "3.1.5";
594
594
 
595
595
  /**
596
596
  * Defaults
@@ -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
+ }));
@@ -1,11 +1,11 @@
1
- /*! KeyTable 2.4.0
1
+ /*! KeyTable 2.4.1
2
2
  * ©2009-2018 SpryMedia Ltd - datatables.net/license
3
3
  */
4
4
 
5
5
  /**
6
6
  * @summary KeyTable
7
7
  * @description Spreadsheet like keyboard navigation for DataTables
8
- * @version 2.4.0
8
+ * @version 2.4.1
9
9
  * @file dataTables.keyTable.js
10
10
  * @author SpryMedia Ltd (www.sprymedia.co.uk)
11
11
  * @contact www.sprymedia.co.uk/contact
@@ -1056,7 +1056,7 @@ KeyTable.defaults = {
1056
1056
 
1057
1057
 
1058
1058
 
1059
- KeyTable.version = "2.4.0";
1059
+ KeyTable.version = "2.4.1";
1060
1060
 
1061
1061
 
1062
1062
  $.fn.dataTable.KeyTable = KeyTable;
@@ -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
+ }));
@@ -1,11 +1,11 @@
1
- /*! Responsive 2.2.2
1
+ /*! Responsive 2.2.3
2
2
  * 2014-2018 SpryMedia Ltd - datatables.net/license
3
3
  */
4
4
 
5
5
  /**
6
6
  * @summary Responsive
7
7
  * @description Responsive tables plug-in for DataTables
8
- * @version 2.2.2
8
+ * @version 2.2.3
9
9
  * @file dataTables.responsive.js
10
10
  * @author SpryMedia Ltd (www.sprymedia.co.uk)
11
11
  * @contact www.sprymedia.co.uk/contact
@@ -1362,7 +1362,7 @@ Api.registerPlural( 'columns().responsiveHidden()', 'column().responsiveHidden()
1362
1362
  * @name Responsive.version
1363
1363
  * @static
1364
1364
  */
1365
- Responsive.version = '2.2.2';
1365
+ Responsive.version = '2.2.3';
1366
1366
 
1367
1367
 
1368
1368
  $.fn.dataTable.Responsive = Responsive;
@@ -1,11 +1,11 @@
1
- /*! RowReorder 1.2.4
1
+ /*! RowReorder 1.2.5
2
2
  * 2015-2018 SpryMedia Ltd - datatables.net/license
3
3
  */
4
4
 
5
5
  /**
6
6
  * @summary RowReorder
7
7
  * @description Row reordering extension for DataTables
8
- * @version 1.2.4
8
+ * @version 1.2.5
9
9
  * @file dataTables.rowReorder.js
10
10
  * @author SpryMedia Ltd (www.sprymedia.co.uk)
11
11
  * @contact www.sprymedia.co.uk/contact
@@ -788,7 +788,7 @@ Api.register( 'rowReorder.disable()', function () {
788
788
  * @name RowReorder.version
789
789
  * @static
790
790
  */
791
- RowReorder.version = '1.2.4';
791
+ RowReorder.version = '1.2.5';
792
792
 
793
793
 
794
794
  $.fn.dataTable.RowReorder = RowReorder;
@@ -0,0 +1,38 @@
1
+ /*! Semanic UI styling wrapper for RowReorder
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-rowreorder'], 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.RowReorder ) {
24
+ require('datatables.net-rowreorder')(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
+ }));
@@ -1,11 +1,11 @@
1
- /*! Scroller 1.5.0
1
+ /*! Scroller 1.5.1
2
2
  * ©2011-2018 SpryMedia Ltd - datatables.net/license
3
3
  */
4
4
 
5
5
  /**
6
6
  * @summary Scroller
7
7
  * @description Virtual rendering for DataTables
8
- * @version 1.5.0
8
+ * @version 1.5.1
9
9
  * @file dataTables.scroller.js
10
10
  * @author SpryMedia Ltd (www.sprymedia.co.uk)
11
11
  * @contact www.sprymedia.co.uk/contact
@@ -1284,7 +1284,7 @@ Scroller.oDefaults = Scroller.defaults;
1284
1284
  * @name Scroller.version
1285
1285
  * @static
1286
1286
  */
1287
- Scroller.version = "1.5.0";
1287
+ Scroller.version = "1.5.1";
1288
1288
 
1289
1289
 
1290
1290
 
@@ -1,4 +1,4 @@
1
- /*! Select for DataTables 1.2.6
1
+ /*! Select for DataTables 1.2.7
2
2
  * 2015-2018 SpryMedia Ltd - datatables.net/license/mit
3
3
  */
4
4
 
@@ -6,7 +6,7 @@
6
6
  * @summary Select for DataTables
7
7
  * @description A collection of API methods, events and buttons for DataTables
8
8
  * that provides selection options of the items in a DataTable
9
- * @version 1.2.6
9
+ * @version 1.2.7
10
10
  * @file dataTables.select.js
11
11
  * @author SpryMedia Ltd (www.sprymedia.co.uk)
12
12
  * @contact datatables.net/forums
@@ -54,7 +54,7 @@ var DataTable = $.fn.dataTable;
54
54
  // Version information for debugger
55
55
  DataTable.select = {};
56
56
 
57
- DataTable.select.version = '1.2.6';
57
+ DataTable.select.version = '1.2.7';
58
58
 
59
59
  DataTable.select.init = function ( dt ) {
60
60
  var ctx = dt.settings()[0];
@@ -1,11 +1,11 @@
1
- /*! DataTables 1.10.18
1
+ /*! DataTables 1.10.19
2
2
  * ©2008-2018 SpryMedia Ltd - datatables.net/license
3
3
  */
4
4
 
5
5
  /**
6
6
  * @summary DataTables
7
7
  * @description Paginate, search and order HTML tables
8
- * @version 1.10.18
8
+ * @version 1.10.19
9
9
  * @file jquery.dataTables.js
10
10
  * @author SpryMedia Ltd
11
11
  * @contact www.datatables.net
@@ -9464,7 +9464,7 @@
9464
9464
  * @type string
9465
9465
  * @default Version number
9466
9466
  */
9467
- DataTable.version = "1.10.18";
9467
+ DataTable.version = "1.10.19";
9468
9468
 
9469
9469
  /**
9470
9470
  * Private data store, containing all of the settings objects that are
@@ -14975,7 +14975,8 @@
14975
14975
 
14976
14976
  text: function () {
14977
14977
  return {
14978
- display: __htmlEscapeEntities
14978
+ display: __htmlEscapeEntities,
14979
+ filter: __htmlEscapeEntities
14979
14980
  };
14980
14981
  }
14981
14982
  };
@@ -1,12 +1,12 @@
1
- h1 Listing <%= plural_table_name %>
1
+ %h1 Listing <%= plural_table_name.titleize %>
2
2
 
3
- table#dttb.responsive.nowrap.table.table-hover data-sort="true" data-source="#{url_for(format: :json)}"
4
- thead
5
- tr
3
+ %table#dttb-<%= plural_table_name %>.responsive.nowrap.table.table-hover data-sort="true" data-source="#{url_for(format: :json)}"
4
+ %thead
5
+ %tr
6
6
  <% attributes.reject(&:password_digest?).each do |attribute| -%>
7
- th data-data="<%= attribute.name %>" <%= attribute.human_name %>
7
+ %th data-data="<%= attribute.name %>" <%= attribute.human_name %>
8
8
  <% end -%>
9
- th data-data="url" data-orderable="false" data-class-name="all" data-searchable="false" class="skip-export" width="100px"
9
+ %th data-data="url" data-orderable="false" data-class-name="all" data-searchable="false" class="skip-export" width="100px"
10
10
 
11
11
 
12
12
  = link_to 'New <%= human_name %>', new_<%= singular_table_name %>_path
@@ -1,6 +1,6 @@
1
- h1 Listing <%= plural_table_name %>
1
+ h1 Listing <%= plural_table_name.titleize %>
2
2
 
3
- table#dttb.responsive.nowrap.table.table-hover data-sort="true" data-source="#{url_for(format: :json)}"
3
+ table#dttb-<%= plural_table_name %>.responsive.nowrap.table.table-hover data-sort="true" data-source="#{url_for(format: :json)}"
4
4
  thead
5
5
  tr
6
6
  <% attributes.reject(&:password_digest?).each do |attribute| -%>
@@ -1,6 +1,6 @@
1
1
  module Jquery
2
2
  module Datatables
3
- VERSION = "1.10.18"
3
+ VERSION = "1.10.19"
4
4
  end
5
5
  end
6
6
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jquery-datatables
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.10.18
4
+ version: 1.10.19
5
5
  platform: ruby
6
6
  authors:
7
7
  - mkhairi
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-06-23 00:00:00.000000000 Z
11
+ date: 2018-06-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: sass
@@ -130,6 +130,7 @@ files:
130
130
  - app/assets/javascripts/datatables/extensions/ColReorder/colReorder.foundation.js
131
131
  - app/assets/javascripts/datatables/extensions/ColReorder/colReorder.jqueryui.js
132
132
  - app/assets/javascripts/datatables/extensions/ColReorder/colReorder.semanicui.js
133
+ - app/assets/javascripts/datatables/extensions/ColReorder/colReorder.semanticui.js
133
134
  - app/assets/javascripts/datatables/extensions/ColReorder/dataTables.colReorder.js
134
135
  - app/assets/javascripts/datatables/extensions/FixedColumns/dataTables.fixedColumns.js
135
136
  - app/assets/javascripts/datatables/extensions/FixedColumns/fixedColumns.bootstrap.js
@@ -138,6 +139,7 @@ files:
138
139
  - app/assets/javascripts/datatables/extensions/FixedColumns/fixedColumns.foundation.js
139
140
  - app/assets/javascripts/datatables/extensions/FixedColumns/fixedColumns.jqueryui.js
140
141
  - app/assets/javascripts/datatables/extensions/FixedColumns/fixedColumns.semanicui.js
142
+ - app/assets/javascripts/datatables/extensions/FixedColumns/fixedColumns.semanticui.js
141
143
  - app/assets/javascripts/datatables/extensions/FixedHeader/dataTables.fixedHeader.js
142
144
  - app/assets/javascripts/datatables/extensions/FixedHeader/fixedHeader.bootstrap.js
143
145
  - app/assets/javascripts/datatables/extensions/FixedHeader/fixedHeader.bootstrap4.js
@@ -145,6 +147,7 @@ files:
145
147
  - app/assets/javascripts/datatables/extensions/FixedHeader/fixedHeader.foundation.js
146
148
  - app/assets/javascripts/datatables/extensions/FixedHeader/fixedHeader.jqueryui.js
147
149
  - app/assets/javascripts/datatables/extensions/FixedHeader/fixedHeader.semanicui.js
150
+ - app/assets/javascripts/datatables/extensions/FixedHeader/fixedHeader.semanticui.js
148
151
  - app/assets/javascripts/datatables/extensions/KeyTable/dataTables.keyTable.js
149
152
  - app/assets/javascripts/datatables/extensions/KeyTable/keyTable.bootstrap.js
150
153
  - app/assets/javascripts/datatables/extensions/KeyTable/keyTable.bootstrap4.js
@@ -152,6 +155,7 @@ files:
152
155
  - app/assets/javascripts/datatables/extensions/KeyTable/keyTable.foundation.js
153
156
  - app/assets/javascripts/datatables/extensions/KeyTable/keyTable.jqueryui.js
154
157
  - app/assets/javascripts/datatables/extensions/KeyTable/keyTable.semanicui.js
158
+ - app/assets/javascripts/datatables/extensions/KeyTable/keyTable.semanticui.js
155
159
  - app/assets/javascripts/datatables/extensions/Responsive/dataTables.responsive.js
156
160
  - app/assets/javascripts/datatables/extensions/Responsive/responsive.bootstrap.js
157
161
  - app/assets/javascripts/datatables/extensions/Responsive/responsive.bootstrap4.js
@@ -173,6 +177,7 @@ files:
173
177
  - app/assets/javascripts/datatables/extensions/RowReorder/rowReorder.foundation.js
174
178
  - app/assets/javascripts/datatables/extensions/RowReorder/rowReorder.jqueryui.js
175
179
  - app/assets/javascripts/datatables/extensions/RowReorder/rowReorder.semanicui.js
180
+ - app/assets/javascripts/datatables/extensions/RowReorder/rowReorder.semanticui.js
176
181
  - app/assets/javascripts/datatables/extensions/Scroller/dataTables.scroller.js
177
182
  - app/assets/javascripts/datatables/extensions/Scroller/scroller.bootstrap.js
178
183
  - app/assets/javascripts/datatables/extensions/Scroller/scroller.bootstrap4.js