jscrollpane-rails 2.0.17.1 → 2.0.17.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.
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
ZGNhYmZjOTYwMzU2MzY1MzE0NzRjMjEzZWFkNmJlYWNmYjJkZjhmNA==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
ZDU4YzhmNTBlMzc5ODEwNjVhN2M2Nzg3ZGQxZDYzZTcwZTk5OGFmNw==
|
7
7
|
!binary "U0hBNTEy":
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
MDM3OTU2NTdhMDQzNGRkZTY0Y2VjOTdiNzBiYTgxZmQyNTNkYTIwN2M4NDY0
|
10
|
+
OTlkOWNlYmE2ZWQ2MGQ2ZjEyYjM2YzNjMTllZjQxOWJjMzcwZmQ4ZTEwMTRj
|
11
|
+
MDA2MzdlNTJkYmMyZDA4Y2ZjOTc2NTQwNzE3MjdiZmYwM2Y0ZjE=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
MmVmZmJiODU3Y2ZjZGFhYTdhYjgwYjUwZjVmOWE3YTNiNzBhYTMyMGY5MzYz
|
14
|
+
ZmMyYTA5N2I5MDg1ZjFjODg4N2EwMmQyMWNhNDEyZDFmZjI0MmMwM2QxZTMw
|
15
|
+
MGUxYTk3OGJjOGQ1NjBiZTFlYzVhZDJhMzY4NzA4ZDBmYjg0NTQ=
|
data/README.md
CHANGED
@@ -1,5 +1,7 @@
|
|
1
1
|
# JScrollPane::Rails
|
2
2
|
|
3
|
+
[](http://badge.fury.io/rb/jscrollpane-rails)
|
4
|
+
|
3
5
|
A ruby gem that uses the Rails asset pipeline to include the jScrollPane plugin by Kelvin Luck
|
4
6
|
(www.kelvinluck.com):
|
5
7
|
|
@@ -24,11 +26,22 @@ NOTE: this is a jQuery plugin so you will also need the `jquery-rails` gem:
|
|
24
26
|
|
25
27
|
* https://github.com/rails/jquery-rails
|
26
28
|
|
29
|
+
It is also recommended (but is optional) to include jQuery MouseWheel plugin
|
30
|
+
(https://github.com/brandonaaron/jquery-mousewheel/) to allow people to scroll your content
|
31
|
+
using their mouse wheel. There is a gem `jquery-mousewheel-rails` available:
|
32
|
+
|
33
|
+
* https://github.com/crazymykl/jquery-mousewheel-rails
|
34
|
+
|
35
|
+
This is totally optional but you can increase the usability of the mousewheel in nested scroll areas
|
36
|
+
by including jQuery MouseWheel Intent plugin by trixta. There is a gem `mwheelintent-rails` available:
|
37
|
+
|
38
|
+
* https://github.com/bodrovis/mwheelintent-rails
|
39
|
+
|
27
40
|
## Usage
|
28
41
|
|
29
42
|
In your `application.js` you will need to add this line:
|
30
43
|
|
31
|
-
//= require jscrollpane
|
44
|
+
//= require jquery.jscrollpane
|
32
45
|
|
33
46
|
And in your `application.css` you will need to add this line:
|
34
47
|
|
File without changes
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jscrollpane-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.17.
|
4
|
+
version: 2.0.17.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ilya Bodrov
|
@@ -34,7 +34,7 @@ extra_rdoc_files: []
|
|
34
34
|
files:
|
35
35
|
- lib/jscrollpane-rails/version.rb
|
36
36
|
- lib/jscrollpane-rails.rb
|
37
|
-
- vendor/assets/javascripts/jscrollpane.js
|
37
|
+
- vendor/assets/javascripts/jquery.jscrollpane.js
|
38
38
|
- vendor/assets/stylesheets/jscrollpane.css
|
39
39
|
- LICENSE
|
40
40
|
- README.md
|