bookingsync_portal 0.0.3 → 0.0.4

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f8a381aeb2a1e1b484bde4afd7b836b7f6f03c46
4
- data.tar.gz: b4ad7a9df5dd012847f35488a58c392eade532ec
3
+ metadata.gz: 70c553579d2fb8322fc661ada084195779e13da4
4
+ data.tar.gz: 41663f7b076257ffb65727a9caf5df9dd35a95d0
5
5
  SHA512:
6
- metadata.gz: 6bacd93299e68edcb55062a198e6e6d38e055a0e660d907a8f9c2aa0a3812b10963782c474bae5aeb521ed7ac1497bd2d6c20f15576b899181ba05e13c91d7f0
7
- data.tar.gz: 44705fd06840027ada9141119258946e12e7139836d1fc40e42499edb4bd681cdb3f8bd13c5fb831bfc61a8b4a6983f0b662df5e449d92fef7a731b7cc0fb293
6
+ metadata.gz: 17f5f8fc8f5d07f501b48541bd367502bf3f50695699f0a20b586d7b8321317ba4d704335cba537f51bd9390e5ea55fe03942b92ef28a65d29953a363a137473
7
+ data.tar.gz: ba94728ae1ce9bca0f16b05ed59f4fd37d8a67c553ee7b397fc643d9000ad109082a29d84ff21586e7ebdbe9fdec372e53fddb8fcad3f35a7ed004ab32746e27
@@ -42,14 +42,10 @@
42
42
  $(input)
43
43
  .change( function () {
44
44
  var filter = $(this).val();
45
- if(filter) {
46
- // this finds all links in a list that contain the input,
47
- // and hide the ones not containing the input while showing the ones that do
48
- $(list).find("> div .panel-heading:not(:Contains(" + filter + "))").parent().slideUp();
49
- $(list).find("> div .panel-heading:Contains(" + filter + ")").parent().slideDown();
50
- } else {
51
- $(list).find("li").slideDown();
52
- }
45
+ // this finds all links in a list that contain the input,
46
+ // and hide the ones not containing the input while showing the ones that do
47
+ $(list).find("> div .panel-heading:not(:Contains(" + filter + "))").parent().slideUp();
48
+ $(list).find("> div .panel-heading:Contains(" + filter + ")").parent().slideDown();
53
49
  return false;
54
50
  })
55
51
  .keyup( function () {
@@ -1,3 +1,3 @@
1
1
  module BookingsyncPortal
2
- VERSION = '0.0.3'
2
+ VERSION = '0.0.4'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bookingsync_portal
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Piotr Marciniak
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-05-07 00:00:00.000000000 Z
11
+ date: 2015-05-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -306,7 +306,7 @@ files:
306
306
  - app/assets/javascripts/bookingsync_portal/admin/live_updates.js.coffee
307
307
  - app/assets/javascripts/bookingsync_portal/admin/rentals.js.coffee
308
308
  - app/assets/javascripts/bookingsync_portal/admin/templates/rentals/connected_rental.hbs
309
- - app/assets/stylesheets/bookingsync_portal/admin/_list_filters.css.scss
309
+ - app/assets/stylesheets/bookingsync_portal/admin/_list_filters.scss
310
310
  - app/assets/stylesheets/bookingsync_portal/admin/application.css.scss
311
311
  - app/controllers/bookingsync_portal/admin/base_controller.rb
312
312
  - app/controllers/bookingsync_portal/admin/remote_accounts_controller.rb