jquery-time_duration_picker-rails 0.1.6 → 0.1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: edc0739d46edc520613b46ed38ddc46d69dc198d
4
- data.tar.gz: f45b06433285f4a0bb69a1a9063ed1fcf637e5fe
3
+ metadata.gz: 66bda6f14ee4650ff98de6fad6160450d86f5356
4
+ data.tar.gz: 9d431ca8d16e7be2ad2a839c7c7b62206994bc9d
5
5
  SHA512:
6
- metadata.gz: 423972beece3fba6ae68d68b0726dfbebe521db9c8fd6c2d23fa8a8ada543954c794399cc3e85e6d3d044e7c45f5663dff288f9158dd1e0a7df545c83c502135
7
- data.tar.gz: 07a4b954d81856b59a62a0468b14d5f61800034e2706583799b0dd06388e9d2516d087dbc22a71555e5799e8e90f6245388a468cc4ca4febd327062bd4605fdc
6
+ metadata.gz: 476c999a7fd56bd4d25cc8dad5e46fa059491778ef49c4d05561f79a43a542e1d345be3d92567ac73c5646d6ef92a48a04e2b2074a1e3ab1a177732286d3c055
7
+ data.tar.gz: a44d8c538af0032a06701278f788faa1c68c01cc051204761d27a70edb9d2d00cab47080c1a1e85b0056ae00bdaad675c5538a89c616f596cdd69343073f1887
data/README.md CHANGED
@@ -48,7 +48,7 @@ In your view:
48
48
  </script>
49
49
  ```
50
50
 
51
- Also see [this example] (https://jsfiddle.net/73eonrox/1/).
51
+ Also see [this example] (https://jsfiddle.net/k10ggor8/1/).
52
52
 
53
53
  ## Contributing
54
54
 
@@ -1,7 +1,7 @@
1
1
  module Jquery
2
2
  module TimeDurationPicker
3
3
  module Rails
4
- VERSION = "0.1.6"
4
+ VERSION = "0.1.7"
5
5
  end
6
6
  end
7
7
  end
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * jQuery TimeDurationPicker Plugin v1.0.3
2
+ * jQuery TimeDurationPicker Plugin v1.0.4
3
3
  *
4
4
  * https://github.com/digaev/jQuery-timeDurationPicker
5
5
  *
@@ -33,6 +33,8 @@
33
33
  if (inst.element[j] == e.target) {
34
34
  var offset = $(e.target).offset();
35
35
  offset.top += $(e.target).outerHeight();
36
+ offset.top -= $(window).scrollTop();
37
+ offset.left -= $(window).scrollLeft();
36
38
  inst._content.div.css(offset).fadeIn();
37
39
  }
38
40
  }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jquery-time_duration_picker-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.6
4
+ version: 0.1.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nikolay Digaev