wice_grid 3.4.1 → 3.4.2

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.
@@ -233,10 +233,10 @@ setupMultiSelectToggle = (wiceGridContainer)->
233
233
 
234
234
  setupBulkToggleForActionColumn = (wiceGridContainer) ->
235
235
  $('.select-all', wiceGridContainer).click ->
236
- $('.sel input', wiceGridContainer).prop('checked', true)
236
+ $('.sel input', wiceGridContainer).prop('checked', true).trigger('change')
237
237
 
238
238
  $('.deselect-all', wiceGridContainer).click ->
239
- $('.sel input', wiceGridContainer).prop('checked', false)
239
+ $('.sel input', wiceGridContainer).prop('checked', false).trigger('change')
240
240
 
241
241
 
242
242
  getGridProcessorForElement = (element) ->
data/wice_grid.gemspec CHANGED
@@ -1,8 +1,8 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'wice_grid'
3
- s.version = '3.4.1'
3
+ s.version = '3.4.2'
4
4
  s.homepage = 'https://github.com/leikind/wice_grid'
5
- s.date = '2013-10-17'
5
+ s.date = '2013-11-12'
6
6
  s.summary = 'A Rails grid plugin to create grids with sorting, pagination, and (automatically generated) filters.'
7
7
  s.description = 'A Rails grid plugin to create grids with sorting, pagination, and (automatically generated) filters.' +
8
8
  'One of the goals of this plugin was to allow the programmer to define the contents of the cell by himself, ' +
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: wice_grid
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.4.1
4
+ version: 3.4.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-10-17 00:00:00.000000000 Z
12
+ date: 2013-11-12 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: kaminari