effective_bootstrap 0.11.16 → 0.11.17

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e2175b1d7e4f1ac7a6a097555260b36d6ddae38e76bdd48fc95b8aad3d2b74ab
4
- data.tar.gz: ca1d58ee920c2d55afb4e5df81b01774e978aeb5ba1b3826f747d803e13f252f
3
+ metadata.gz: 209e44db0eafd9e67b747a04c46b3d5a336db8a183d8875abd9a017377edac4b
4
+ data.tar.gz: 7ed083b2fbb26c2dcd9c9278ab20052da48b204310908ea35dd857baf40fa15e
5
5
  SHA512:
6
- metadata.gz: 75c6c84817311517738d7726bfe72bf4748aae7cd22a772a2de7c4a2450184c6e6e1ea951ca65dbdb00502d1d33f8a751a8abf32d81bc62188d27f8d04e05bbc
7
- data.tar.gz: 4ae8ad5fd75245078c5c61565d49887f46e2c3505cedbb91f629cf868d7271c9e3d03243ec45d8046b2499f5b42f5599c1ee148df5f7eb8ea2e3343fcfc4c346
6
+ metadata.gz: 8e5bf5a9fb4a10ee5fb538cad64df9b405ac6499ff930003492cd84e058afd1ef804917c0b2f163cdae257434f57f9021652be6f2e8c06760f50b69eee30d301
7
+ data.tar.gz: 5f98473a059d216a2c6f75de132ed8c663dbb62127778ba4a5942e28181fbfe604428f6fd59b38d4ce845885f1be4d85785dccbb5eec61746acf44ac17a6e79a
@@ -16,8 +16,9 @@ effectiveMatch = (params, data) ->
16
16
  term = params.term.toLowerCase()
17
17
 
18
18
  # The text value
19
- text = $(data.element.getAttribute('data-html')).text()
20
- text = $(data.text).text() if text.length == 0
19
+ text = ''
20
+ try text = $(data.element.getAttribute('data-html')).text()
21
+ try text = $(data.text).text() if text.length == 0
21
22
  text = data.text if text.length == 0
22
23
 
23
24
  if(text.length > 0)
@@ -30,8 +31,9 @@ effectiveMatch = (params, data) ->
30
31
 
31
32
  $.each(data.children, (idx, child) ->
32
33
  # Text value
33
- text = $(child.element.getAttribute('data-html')).text()
34
- text = $(data.text).text() if text.length == 0
34
+ text = ''
35
+ try text = $(child.element.getAttribute('data-html')).text()
36
+ try text = $(data.text).text() if text.length == 0
35
37
  text = data.text if text.length == 0
36
38
 
37
39
  filteredChildren.push(child) if text.toLowerCase().indexOf(term) > -1
@@ -1,3 +1,3 @@
1
1
  module EffectiveBootstrap
2
- VERSION = '0.11.16'.freeze
2
+ VERSION = '0.11.17'.freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: effective_bootstrap
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.11.16
4
+ version: 0.11.17
5
5
  platform: ruby
6
6
  authors:
7
7
  - Code and Effect
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-11-07 00:00:00.000000000 Z
11
+ date: 2022-12-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails