jquery-datatables-rails 3.3.0 → 3.4.0
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.
- checksums.yaml +4 -4
- data/app/assets/javascripts/dataTables/bootstrap/3/jquery.dataTables.bootstrap.js +64 -29
- data/app/assets/javascripts/dataTables/extras/dataTables.autoFill.js +806 -648
- data/app/assets/javascripts/dataTables/extras/dataTables.buttons.js +1607 -0
- data/app/assets/javascripts/dataTables/extras/dataTables.colReorder.js +220 -267
- data/app/assets/javascripts/dataTables/extras/dataTables.fixedColumns.js +164 -69
- data/app/assets/javascripts/dataTables/extras/dataTables.fixedHeader.js +469 -870
- data/app/assets/javascripts/dataTables/extras/dataTables.keyTable.js +636 -972
- data/app/assets/javascripts/dataTables/extras/dataTables.responsive.js +472 -187
- data/app/assets/javascripts/dataTables/extras/dataTables.rowReorder.js +619 -0
- data/app/assets/javascripts/dataTables/extras/dataTables.scroller.js +146 -111
- data/app/assets/javascripts/dataTables/extras/dataTables.select.js +1038 -0
- data/app/assets/javascripts/dataTables/jquery.dataTables.api.fnGetColumnData.js +0 -0
- data/app/assets/javascripts/dataTables/jquery.dataTables.api.fnReloadAjax.js +0 -0
- data/app/assets/javascripts/dataTables/jquery.dataTables.foundation.js +37 -61
- data/app/assets/javascripts/dataTables/jquery.dataTables.js +720 -387
- data/app/assets/javascripts/dataTables/jquery.dataTables.sorting.ipAddress.js +44 -0
- data/app/assets/javascripts/dataTables/jquery.dataTables.sorting.numbersHtml.js +0 -0
- data/app/assets/javascripts/dataTables/jquery.dataTables.typeDetection.numbersHtml.js +0 -0
- data/app/assets/stylesheets/dataTables/jquery.dataTables.scss +34 -66
- data/app/assets/stylesheets/dataTables/src/demo_table.css +1 -1
- data/app/assets/stylesheets/dataTables/src/demo_table_jui.css.scss +4 -4
- data/lib/jquery/datatables/rails/version.rb +1 -1
- metadata +24 -19
@@ -0,0 +1,44 @@
|
|
1
|
+
/**
|
2
|
+
* Sorts a column containing IP addresses in typical dot notation. This can
|
3
|
+
* be most useful when using DataTables for a networking application, and
|
4
|
+
* reporting information containing IP address. Also has a matching type
|
5
|
+
* detection plug-in for automatic type detection.
|
6
|
+
*
|
7
|
+
* @name IP addresses
|
8
|
+
* @summary Sort IP addresses numerically
|
9
|
+
* @author Brad Wasson
|
10
|
+
*
|
11
|
+
* @example
|
12
|
+
* $('#example').dataTable( {
|
13
|
+
* columnDefs: [
|
14
|
+
* { type: 'ip-address', targets: 0 }
|
15
|
+
* ]
|
16
|
+
* } );
|
17
|
+
*/
|
18
|
+
|
19
|
+
jQuery.extend( jQuery.fn.dataTableExt.oSort, {
|
20
|
+
"ip-address-pre": function ( a ) {
|
21
|
+
var m = a.split("."), x = "";
|
22
|
+
|
23
|
+
for(var i = 0; i < m.length; i++) {
|
24
|
+
var item = m[i];
|
25
|
+
if(item.length == 1) {
|
26
|
+
x += "00" + item;
|
27
|
+
} else if(item.length == 2) {
|
28
|
+
x += "0" + item;
|
29
|
+
} else {
|
30
|
+
x += item;
|
31
|
+
}
|
32
|
+
}
|
33
|
+
|
34
|
+
return x;
|
35
|
+
},
|
36
|
+
|
37
|
+
"ip-address-asc": function ( a, b ) {
|
38
|
+
return ((a < b) ? -1 : ((a > b) ? 1 : 0));
|
39
|
+
},
|
40
|
+
|
41
|
+
"ip-address-desc": function ( a, b ) {
|
42
|
+
return ((a < b) ? 1 : ((a > b) ? -1 : 0));
|
43
|
+
}
|
44
|
+
} );
|
File without changes
|
File without changes
|
@@ -21,7 +21,7 @@ table.dataTable tfoot th {
|
|
21
21
|
table.dataTable thead th,
|
22
22
|
table.dataTable thead td {
|
23
23
|
padding: 10px 18px;
|
24
|
-
border-bottom: 1px solid #
|
24
|
+
border-bottom: 1px solid #111;
|
25
25
|
}
|
26
26
|
table.dataTable thead th:active,
|
27
27
|
table.dataTable thead td:active {
|
@@ -30,7 +30,7 @@ table.dataTable thead td:active {
|
|
30
30
|
table.dataTable tfoot th,
|
31
31
|
table.dataTable tfoot td {
|
32
32
|
padding: 10px 18px 6px 18px;
|
33
|
-
border-top: 1px solid #
|
33
|
+
border-top: 1px solid #111;
|
34
34
|
}
|
35
35
|
table.dataTable thead .sorting,
|
36
36
|
table.dataTable thead .sorting_asc,
|
@@ -62,17 +62,17 @@ table.dataTable thead .sorting_desc_disabled {
|
|
62
62
|
background-image: image_url('dataTables/sort_desc_disabled.png');
|
63
63
|
}
|
64
64
|
table.dataTable tbody tr {
|
65
|
-
background-color:
|
65
|
+
background-color: #ffffff;
|
66
66
|
}
|
67
67
|
table.dataTable tbody tr.selected {
|
68
|
-
background-color: #
|
68
|
+
background-color: #B0BED9;
|
69
69
|
}
|
70
70
|
table.dataTable tbody th,
|
71
71
|
table.dataTable tbody td {
|
72
72
|
padding: 8px 10px;
|
73
73
|
}
|
74
74
|
table.dataTable.row-border tbody th, table.dataTable.row-border tbody td, table.dataTable.display tbody th, table.dataTable.display tbody td {
|
75
|
-
border-top: 1px solid #
|
75
|
+
border-top: 1px solid #ddd;
|
76
76
|
}
|
77
77
|
table.dataTable.row-border tbody tr:first-child th,
|
78
78
|
table.dataTable.row-border tbody tr:first-child td, table.dataTable.display tbody tr:first-child th,
|
@@ -80,12 +80,12 @@ table.dataTable.display tbody tr:first-child td {
|
|
80
80
|
border-top: none;
|
81
81
|
}
|
82
82
|
table.dataTable.cell-border tbody th, table.dataTable.cell-border tbody td {
|
83
|
-
border-top: 1px solid #
|
84
|
-
border-right: 1px solid #
|
83
|
+
border-top: 1px solid #ddd;
|
84
|
+
border-right: 1px solid #ddd;
|
85
85
|
}
|
86
86
|
table.dataTable.cell-border tbody tr th:first-child,
|
87
87
|
table.dataTable.cell-border tbody tr td:first-child {
|
88
|
-
border-left: 1px solid #
|
88
|
+
border-left: 1px solid #ddd;
|
89
89
|
}
|
90
90
|
table.dataTable.cell-border tbody tr:first-child th,
|
91
91
|
table.dataTable.cell-border tbody tr:first-child td {
|
@@ -97,18 +97,10 @@ table.dataTable.stripe tbody tr.odd, table.dataTable.display tbody tr.odd {
|
|
97
97
|
table.dataTable.stripe tbody tr.odd.selected, table.dataTable.display tbody tr.odd.selected {
|
98
98
|
background-color: #abb9d3;
|
99
99
|
}
|
100
|
-
table.dataTable.hover tbody tr:hover,
|
101
|
-
table.dataTable.hover tbody tr.odd:hover,
|
102
|
-
table.dataTable.hover tbody tr.even:hover, table.dataTable.display tbody tr:hover,
|
103
|
-
table.dataTable.display tbody tr.odd:hover,
|
104
|
-
table.dataTable.display tbody tr.even:hover {
|
100
|
+
table.dataTable.hover tbody tr:hover, table.dataTable.display tbody tr:hover {
|
105
101
|
background-color: whitesmoke;
|
106
102
|
}
|
107
|
-
table.dataTable.hover tbody tr:hover.selected,
|
108
|
-
table.dataTable.hover tbody tr.odd:hover.selected,
|
109
|
-
table.dataTable.hover tbody tr.even:hover.selected, table.dataTable.display tbody tr:hover.selected,
|
110
|
-
table.dataTable.display tbody tr.odd:hover.selected,
|
111
|
-
table.dataTable.display tbody tr.even:hover.selected {
|
103
|
+
table.dataTable.hover tbody tr:hover.selected, table.dataTable.display tbody tr:hover.selected {
|
112
104
|
background-color: #a9b7d1;
|
113
105
|
}
|
114
106
|
table.dataTable.order-column tbody tr > .sorting_1,
|
@@ -161,50 +153,26 @@ table.dataTable.display tbody tr.even.selected > .sorting_2, table.dataTable.ord
|
|
161
153
|
table.dataTable.display tbody tr.even.selected > .sorting_3, table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_3 {
|
162
154
|
background-color: #afbdd8;
|
163
155
|
}
|
164
|
-
table.dataTable.display tbody tr:hover > .sorting_1,
|
165
|
-
table.dataTable.display tbody tr.odd:hover > .sorting_1,
|
166
|
-
table.dataTable.display tbody tr.even:hover > .sorting_1, table.dataTable.order-column.hover tbody tr:hover > .sorting_1,
|
167
|
-
table.dataTable.order-column.hover tbody tr.odd:hover > .sorting_1,
|
168
|
-
table.dataTable.order-column.hover tbody tr.even:hover > .sorting_1 {
|
156
|
+
table.dataTable.display tbody tr:hover > .sorting_1, table.dataTable.order-column.hover tbody tr:hover > .sorting_1 {
|
169
157
|
background-color: #eaeaea;
|
170
158
|
}
|
171
|
-
table.dataTable.display tbody tr:hover > .sorting_2,
|
172
|
-
table.dataTable.display tbody tr.odd:hover > .sorting_2,
|
173
|
-
table.dataTable.display tbody tr.even:hover > .sorting_2, table.dataTable.order-column.hover tbody tr:hover > .sorting_2,
|
174
|
-
table.dataTable.order-column.hover tbody tr.odd:hover > .sorting_2,
|
175
|
-
table.dataTable.order-column.hover tbody tr.even:hover > .sorting_2 {
|
159
|
+
table.dataTable.display tbody tr:hover > .sorting_2, table.dataTable.order-column.hover tbody tr:hover > .sorting_2 {
|
176
160
|
background-color: #ebebeb;
|
177
161
|
}
|
178
|
-
table.dataTable.display tbody tr:hover > .sorting_3,
|
179
|
-
table.dataTable.display tbody tr.odd:hover > .sorting_3,
|
180
|
-
table.dataTable.display tbody tr.even:hover > .sorting_3, table.dataTable.order-column.hover tbody tr:hover > .sorting_3,
|
181
|
-
table.dataTable.order-column.hover tbody tr.odd:hover > .sorting_3,
|
182
|
-
table.dataTable.order-column.hover tbody tr.even:hover > .sorting_3 {
|
162
|
+
table.dataTable.display tbody tr:hover > .sorting_3, table.dataTable.order-column.hover tbody tr:hover > .sorting_3 {
|
183
163
|
background-color: #eeeeee;
|
184
164
|
}
|
185
|
-
table.dataTable.display tbody tr:hover.selected > .sorting_1,
|
186
|
-
table.dataTable.display tbody tr.odd:hover.selected > .sorting_1,
|
187
|
-
table.dataTable.display tbody tr.even:hover.selected > .sorting_1, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_1,
|
188
|
-
table.dataTable.order-column.hover tbody tr.odd:hover.selected > .sorting_1,
|
189
|
-
table.dataTable.order-column.hover tbody tr.even:hover.selected > .sorting_1 {
|
165
|
+
table.dataTable.display tbody tr:hover.selected > .sorting_1, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_1 {
|
190
166
|
background-color: #a1aec7;
|
191
167
|
}
|
192
|
-
table.dataTable.display tbody tr:hover.selected > .sorting_2,
|
193
|
-
table.dataTable.display tbody tr.odd:hover.selected > .sorting_2,
|
194
|
-
table.dataTable.display tbody tr.even:hover.selected > .sorting_2, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_2,
|
195
|
-
table.dataTable.order-column.hover tbody tr.odd:hover.selected > .sorting_2,
|
196
|
-
table.dataTable.order-column.hover tbody tr.even:hover.selected > .sorting_2 {
|
168
|
+
table.dataTable.display tbody tr:hover.selected > .sorting_2, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_2 {
|
197
169
|
background-color: #a2afc8;
|
198
170
|
}
|
199
|
-
table.dataTable.display tbody tr:hover.selected > .sorting_3,
|
200
|
-
table.dataTable.display tbody tr.odd:hover.selected > .sorting_3,
|
201
|
-
table.dataTable.display tbody tr.even:hover.selected > .sorting_3, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_3,
|
202
|
-
table.dataTable.order-column.hover tbody tr.odd:hover.selected > .sorting_3,
|
203
|
-
table.dataTable.order-column.hover tbody tr.even:hover.selected > .sorting_3 {
|
171
|
+
table.dataTable.display tbody tr:hover.selected > .sorting_3, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_3 {
|
204
172
|
background-color: #a4b2cb;
|
205
173
|
}
|
206
174
|
table.dataTable.no-footer {
|
207
|
-
border-bottom: 1px solid #
|
175
|
+
border-bottom: 1px solid #111;
|
208
176
|
}
|
209
177
|
table.dataTable.nowrap th, table.dataTable.nowrap td {
|
210
178
|
white-space: nowrap;
|
@@ -340,24 +308,24 @@ table.dataTable td {
|
|
340
308
|
text-decoration: none !important;
|
341
309
|
cursor: pointer;
|
342
310
|
*cursor: hand;
|
343
|
-
color: #
|
311
|
+
color: #333 !important;
|
344
312
|
border: 1px solid transparent;
|
345
313
|
}
|
346
314
|
.dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
|
347
|
-
color: #
|
315
|
+
color: #333 !important;
|
348
316
|
border: 1px solid #cacaca;
|
349
317
|
background-color: white;
|
350
|
-
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, white), color-stop(100%,
|
318
|
+
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, white), color-stop(100%, #dcdcdc));
|
351
319
|
/* Chrome,Safari4+ */
|
352
|
-
background: -webkit-linear-gradient(top, white 0%,
|
320
|
+
background: -webkit-linear-gradient(top, white 0%, #dcdcdc 100%);
|
353
321
|
/* Chrome10+,Safari5.1+ */
|
354
|
-
background: -moz-linear-gradient(top, white 0%,
|
322
|
+
background: -moz-linear-gradient(top, white 0%, #dcdcdc 100%);
|
355
323
|
/* FF3.6+ */
|
356
|
-
background: -ms-linear-gradient(top, white 0%,
|
324
|
+
background: -ms-linear-gradient(top, white 0%, #dcdcdc 100%);
|
357
325
|
/* IE10+ */
|
358
|
-
background: -o-linear-gradient(top, white 0%,
|
326
|
+
background: -o-linear-gradient(top, white 0%, #dcdcdc 100%);
|
359
327
|
/* Opera 11.10+ */
|
360
|
-
background: linear-gradient(to bottom, white 0%,
|
328
|
+
background: linear-gradient(to bottom, white 0%, #dcdcdc 100%);
|
361
329
|
/* W3C */
|
362
330
|
}
|
363
331
|
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
|
@@ -369,19 +337,19 @@ table.dataTable td {
|
|
369
337
|
}
|
370
338
|
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
|
371
339
|
color: white !important;
|
372
|
-
border: 1px solid #
|
340
|
+
border: 1px solid #111;
|
373
341
|
background-color: #585858;
|
374
|
-
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #585858), color-stop(100%, #
|
342
|
+
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #585858), color-stop(100%, #111));
|
375
343
|
/* Chrome,Safari4+ */
|
376
|
-
background: -webkit-linear-gradient(top, #585858 0%, #
|
344
|
+
background: -webkit-linear-gradient(top, #585858 0%, #111 100%);
|
377
345
|
/* Chrome10+,Safari5.1+ */
|
378
|
-
background: -moz-linear-gradient(top, #585858 0%, #
|
346
|
+
background: -moz-linear-gradient(top, #585858 0%, #111 100%);
|
379
347
|
/* FF3.6+ */
|
380
|
-
background: -ms-linear-gradient(top, #585858 0%, #
|
348
|
+
background: -ms-linear-gradient(top, #585858 0%, #111 100%);
|
381
349
|
/* IE10+ */
|
382
|
-
background: -o-linear-gradient(top, #585858 0%, #
|
350
|
+
background: -o-linear-gradient(top, #585858 0%, #111 100%);
|
383
351
|
/* Opera 11.10+ */
|
384
|
-
background: linear-gradient(to bottom, #585858 0%, #
|
352
|
+
background: linear-gradient(to bottom, #585858 0%, #111 100%);
|
385
353
|
/* W3C */
|
386
354
|
}
|
387
355
|
.dataTables_wrapper .dataTables_paginate .paginate_button:active {
|
@@ -434,7 +402,7 @@ table.dataTable td {
|
|
434
402
|
.dataTables_wrapper .dataTables_info,
|
435
403
|
.dataTables_wrapper .dataTables_processing,
|
436
404
|
.dataTables_wrapper .dataTables_paginate {
|
437
|
-
color: #
|
405
|
+
color: #333;
|
438
406
|
}
|
439
407
|
.dataTables_wrapper .dataTables_scroll {
|
440
408
|
clear: both;
|
@@ -451,7 +419,7 @@ table.dataTable td {
|
|
451
419
|
padding: 0 !important;
|
452
420
|
}
|
453
421
|
.dataTables_wrapper.no-footer .dataTables_scrollBody {
|
454
|
-
border-bottom: 1px solid #
|
422
|
+
border-bottom: 1px solid #111;
|
455
423
|
}
|
456
424
|
.dataTables_wrapper.no-footer div.dataTables_scrollHead table,
|
457
425
|
.dataTables_wrapper.no-footer div.dataTables_scrollBody table {
|
@@ -34,14 +34,14 @@
|
|
34
34
|
.paging_two_button .ui-button {
|
35
35
|
float: left;
|
36
36
|
cursor: pointer;
|
37
|
-
|
37
|
+
cursor: hand;
|
38
38
|
}
|
39
39
|
|
40
40
|
.paging_full_numbers .ui-button {
|
41
41
|
padding: 2px 6px;
|
42
42
|
margin: 0;
|
43
43
|
cursor: pointer;
|
44
|
-
|
44
|
+
cursor: hand;
|
45
45
|
color: #333 !important;
|
46
46
|
}
|
47
47
|
|
@@ -69,7 +69,7 @@
|
|
69
69
|
table.display thead th {
|
70
70
|
padding: 3px 0px 3px 10px;
|
71
71
|
cursor: pointer;
|
72
|
-
|
72
|
+
cursor: hand;
|
73
73
|
}
|
74
74
|
|
75
75
|
div.dataTables_wrapper .ui-widget-header {
|
@@ -527,4 +527,4 @@ tr.even.gradeU td.sorting_3 {
|
|
527
527
|
|
528
528
|
.ex_highlight #example tbody tr.odd:hover, #example tbody tr.odd td.highlighted {
|
529
529
|
background-color: #E6FF99;
|
530
|
-
}
|
530
|
+
}
|
metadata
CHANGED
@@ -1,83 +1,83 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jquery-datatables-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.
|
4
|
+
version: 3.4.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Robin Wenglewski
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2016-03-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jquery-rails
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- -
|
17
|
+
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
19
|
version: '0'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
|
-
- -
|
24
|
+
- - ">="
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: '0'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: sass-rails
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
|
-
- -
|
31
|
+
- - ">="
|
32
32
|
- !ruby/object:Gem::Version
|
33
33
|
version: '0'
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
|
-
- -
|
38
|
+
- - ">="
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '0'
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: railties
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
|
-
- -
|
45
|
+
- - ">="
|
46
46
|
- !ruby/object:Gem::Version
|
47
47
|
version: '3.1'
|
48
48
|
type: :runtime
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
|
-
- -
|
52
|
+
- - ">="
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: '3.1'
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
56
|
name: actionpack
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
58
58
|
requirements:
|
59
|
-
- -
|
59
|
+
- - ">="
|
60
60
|
- !ruby/object:Gem::Version
|
61
61
|
version: '3.1'
|
62
62
|
type: :runtime
|
63
63
|
prerelease: false
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
65
65
|
requirements:
|
66
|
-
- -
|
66
|
+
- - ">="
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: '3.1'
|
69
69
|
- !ruby/object:Gem::Dependency
|
70
70
|
name: rake
|
71
71
|
requirement: !ruby/object:Gem::Requirement
|
72
72
|
requirements:
|
73
|
-
- -
|
73
|
+
- - ">="
|
74
74
|
- !ruby/object:Gem::Version
|
75
75
|
version: '0'
|
76
76
|
type: :development
|
77
77
|
prerelease: false
|
78
78
|
version_requirements: !ruby/object:Gem::Requirement
|
79
79
|
requirements:
|
80
|
-
- -
|
80
|
+
- - ">="
|
81
81
|
- !ruby/object:Gem::Version
|
82
82
|
version: '0'
|
83
83
|
description: ''
|
@@ -126,13 +126,16 @@ files:
|
|
126
126
|
- app/assets/javascripts/dataTables/bootstrap/2/jquery.dataTables.bootstrap.js
|
127
127
|
- app/assets/javascripts/dataTables/bootstrap/3/jquery.dataTables.bootstrap.js
|
128
128
|
- app/assets/javascripts/dataTables/extras/dataTables.autoFill.js
|
129
|
+
- app/assets/javascripts/dataTables/extras/dataTables.buttons.js
|
129
130
|
- app/assets/javascripts/dataTables/extras/dataTables.colReorder.js
|
130
131
|
- app/assets/javascripts/dataTables/extras/dataTables.colVis.js
|
131
132
|
- app/assets/javascripts/dataTables/extras/dataTables.fixedColumns.js
|
132
133
|
- app/assets/javascripts/dataTables/extras/dataTables.fixedHeader.js
|
133
134
|
- app/assets/javascripts/dataTables/extras/dataTables.keyTable.js
|
134
135
|
- app/assets/javascripts/dataTables/extras/dataTables.responsive.js
|
136
|
+
- app/assets/javascripts/dataTables/extras/dataTables.rowReorder.js
|
135
137
|
- app/assets/javascripts/dataTables/extras/dataTables.scroller.js
|
138
|
+
- app/assets/javascripts/dataTables/extras/dataTables.select.js
|
136
139
|
- app/assets/javascripts/dataTables/extras/dataTables.tableTools.js
|
137
140
|
- app/assets/javascripts/dataTables/jquery.dataTables.api.fnFilterOnReturn.js
|
138
141
|
- app/assets/javascripts/dataTables/jquery.dataTables.api.fnGetColumnData.js
|
@@ -140,19 +143,20 @@ files:
|
|
140
143
|
- app/assets/javascripts/dataTables/jquery.dataTables.api.fnSetFilteringDelay.js
|
141
144
|
- app/assets/javascripts/dataTables/jquery.dataTables.foundation.js
|
142
145
|
- app/assets/javascripts/dataTables/jquery.dataTables.js
|
146
|
+
- app/assets/javascripts/dataTables/jquery.dataTables.sorting.ipAddress.js
|
143
147
|
- app/assets/javascripts/dataTables/jquery.dataTables.sorting.numbersHtml.js
|
144
148
|
- app/assets/javascripts/dataTables/jquery.dataTables.typeDetection.numbersHtml.js
|
145
|
-
- app/assets/media/dataTables/extras/as3/lib/AlivePDF.swc
|
146
149
|
- app/assets/media/dataTables/extras/as3/ZeroClipboard.as
|
147
150
|
- app/assets/media/dataTables/extras/as3/ZeroClipboardPdf.as
|
151
|
+
- app/assets/media/dataTables/extras/as3/lib/AlivePDF.swc
|
148
152
|
- app/assets/media/dataTables/extras/swf/copy_csv_xls.swf
|
149
153
|
- app/assets/media/dataTables/extras/swf/copy_csv_xls_pdf.swf
|
150
154
|
- app/assets/stylesheets/dataTables/bootstrap/2/jquery.dataTables.bootstrap.scss
|
151
155
|
- app/assets/stylesheets/dataTables/bootstrap/3/jquery.dataTables.bootstrap.scss
|
152
156
|
- app/assets/stylesheets/dataTables/extras/dataTables.autoFill.scss
|
153
157
|
- app/assets/stylesheets/dataTables/extras/dataTables.colReorder.scss
|
154
|
-
- app/assets/stylesheets/dataTables/extras/dataTables.colvis.jqueryui.scss
|
155
158
|
- app/assets/stylesheets/dataTables/extras/dataTables.colVis.scss
|
159
|
+
- app/assets/stylesheets/dataTables/extras/dataTables.colvis.jqueryui.scss
|
156
160
|
- app/assets/stylesheets/dataTables/extras/dataTables.fixedColumns.scss
|
157
161
|
- app/assets/stylesheets/dataTables/extras/dataTables.fixedHeader.scss
|
158
162
|
- app/assets/stylesheets/dataTables/extras/dataTables.keyTable.scss
|
@@ -166,11 +170,12 @@ files:
|
|
166
170
|
- app/assets/stylesheets/dataTables/src/demo_table_jui.css.scss
|
167
171
|
- app/assets/stylesheets/dataTables/src/jquery.dataTables_themeroller.css
|
168
172
|
- lib/generators/jquery/datatables/install_generator.rb
|
173
|
+
- lib/jquery-datatables-rails.rb
|
169
174
|
- lib/jquery/datatables/rails/engine.rb
|
170
175
|
- lib/jquery/datatables/rails/version.rb
|
171
|
-
- lib/jquery-datatables-rails.rb
|
172
176
|
homepage: https://github.com/rweng/jquery-datatables-rails
|
173
|
-
licenses:
|
177
|
+
licenses:
|
178
|
+
- MIT
|
174
179
|
metadata: {}
|
175
180
|
post_install_message:
|
176
181
|
rdoc_options: []
|
@@ -178,17 +183,17 @@ require_paths:
|
|
178
183
|
- lib
|
179
184
|
required_ruby_version: !ruby/object:Gem::Requirement
|
180
185
|
requirements:
|
181
|
-
- -
|
186
|
+
- - ">="
|
182
187
|
- !ruby/object:Gem::Version
|
183
188
|
version: '0'
|
184
189
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
185
190
|
requirements:
|
186
|
-
- -
|
191
|
+
- - ">="
|
187
192
|
- !ruby/object:Gem::Version
|
188
193
|
version: '0'
|
189
194
|
requirements: []
|
190
195
|
rubyforge_project:
|
191
|
-
rubygems_version: 2.
|
196
|
+
rubygems_version: 2.5.1
|
192
197
|
signing_key:
|
193
198
|
specification_version: 4
|
194
199
|
summary: jquery datatables for rails
|