wice_grid 3.4.6 → 3.4.7
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/README.rdoc +1 -1
- data/lib/wice/helpers/wice_grid_view_helpers.rb +1 -0
- data/lib/wice/wice_grid_serialized_query.rb +1 -1
- data/lib/wice_grid.rb +1 -1
- data/wice_grid.gemspec +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 86104c55ad7c39afcbeede0d70eec14a954b5497
|
|
4
|
+
data.tar.gz: 1b4ae6d4a83a84a5edbb6d9efd467dc46279d261
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4d0958d90066286fb45c88f5b15e7814bb7f5811b36e137e4a8a65cbfb7a2c8c123d78659498d2958ad587f98dd4a43a8f451b95e63d32dfedc7231b2d91a5fa
|
|
7
|
+
data.tar.gz: 10dfac4dacf0d6e4b2b7d9dcf3d6737899329ea8ee2d8fe9bc995e44fecbd6b060b32a96bb1ad345ebcd6a5a7baab0ef3bf803c65b6a843e651afa71bbf44189
|
data/README.rdoc
CHANGED
|
@@ -306,6 +306,7 @@ module Wice
|
|
|
306
306
|
link_style = nil
|
|
307
307
|
if grid.ordered_by?(column)
|
|
308
308
|
column.add_css_class('sorted')
|
|
309
|
+
Wice::WgHash.add_or_append_class_value!(opts, 'sorted')
|
|
309
310
|
link_style = grid.order_direction
|
|
310
311
|
direction = 'desc' if grid.order_direction == 'asc'
|
|
311
312
|
end
|
data/lib/wice_grid.rb
CHANGED
|
@@ -279,7 +279,7 @@ module Wice
|
|
|
279
279
|
end
|
|
280
280
|
|
|
281
281
|
|
|
282
|
-
def add_references relation
|
|
282
|
+
def add_references relation
|
|
283
283
|
if @ar_options[:include] && relation.respond_to?(:references)
|
|
284
284
|
refs = [@ar_options[:include]] unless @ar_options[:include].is_a?(Array)
|
|
285
285
|
relation = relation.references(* @ar_options[:include])
|
data/wice_grid.gemspec
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = 'wice_grid'
|
|
3
|
-
s.version = '3.4.
|
|
3
|
+
s.version = '3.4.7'
|
|
4
4
|
s.homepage = 'https://github.com/leikind/wice_grid'
|
|
5
5
|
s.date = '2014-08-25'
|
|
6
6
|
s.summary = 'A Rails grid plugin to create grids with sorting, pagination, and (automatically generated) filters.'
|