jquery-datatables-rails 2.2.3 → 3.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/assets/javascripts/dataTables/bootstrap/2/jquery.dataTables.bootstrap.js +59 -6
- data/app/assets/javascripts/dataTables/extras/dataTables.responsive.js +747 -596
- data/app/assets/javascripts/dataTables/jquery.dataTables.api.fnSetFilteringDelay.js +2 -2
- data/app/assets/javascripts/dataTables/jquery.dataTables.js +2119 -1969
- data/app/assets/stylesheets/dataTables/extras/dataTables.responsive.css.scss +128 -85
- data/app/assets/stylesheets/dataTables/jquery.dataTables.css +476 -0
- data/app/assets/stylesheets/dataTables/jquery.dataTables.css.scss +5 -5
- data/lib/jquery/datatables/rails/version.rb +1 -1
- metadata +3 -2
@@ -39,19 +39,19 @@ table.dataTable thead .sorting {
|
|
39
39
|
*cursor: hand;
|
40
40
|
}
|
41
41
|
table.dataTable thead .sorting {
|
42
|
-
background:
|
42
|
+
background: url("../images/sort_both.png") no-repeat center right;
|
43
43
|
}
|
44
44
|
table.dataTable thead .sorting_asc {
|
45
|
-
background:
|
45
|
+
background: url("../images/sort_asc.png") no-repeat center right;
|
46
46
|
}
|
47
47
|
table.dataTable thead .sorting_desc {
|
48
|
-
background:
|
48
|
+
background: url("../images/sort_desc.png") no-repeat center right;
|
49
49
|
}
|
50
50
|
table.dataTable thead .sorting_asc_disabled {
|
51
|
-
background:
|
51
|
+
background: url("../images/sort_asc_disabled.png") no-repeat center right;
|
52
52
|
}
|
53
53
|
table.dataTable thead .sorting_desc_disabled {
|
54
|
-
background:
|
54
|
+
background: url("../images/sort_desc_disabled.png") no-repeat center right;
|
55
55
|
}
|
56
56
|
table.dataTable tbody tr {
|
57
57
|
background-color: white;
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jquery-datatables-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 3.0.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: 2014-
|
11
|
+
date: 2014-10-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jquery-rails
|
@@ -117,6 +117,7 @@ files:
|
|
117
117
|
- app/assets/stylesheets/dataTables/extras/dataTables.responsive.css.scss
|
118
118
|
- app/assets/stylesheets/dataTables/extras/dataTables.scroller.css.scss
|
119
119
|
- app/assets/stylesheets/dataTables/extras/dataTables.tableTools.css.scss
|
120
|
+
- app/assets/stylesheets/dataTables/jquery.dataTables.css
|
120
121
|
- app/assets/stylesheets/dataTables/jquery.dataTables.css.scss
|
121
122
|
- app/assets/stylesheets/dataTables/jquery.dataTables.foundation.css.scss
|
122
123
|
- app/assets/stylesheets/dataTables/src/demo_page.css
|