jquery_lazy_load 0.1.0.13 → 0.1.0.14
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 +4 -4
- data/jquery_lazy_load.gemspec +9 -1
- data/lib/jquery_lazy_load/version.rb +1 -1
- metadata +12 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f5c2b5de40bf8d536a8109f1c64f1234fe93a2bf
|
|
4
|
+
data.tar.gz: 15ad04eb967882bba3c2c58ce1869838d02ae0db
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d71c6d8db533bfeedf4d7d848defdc6564c5b7bb592cbcbbc2984cb12d29cd513c84db5f93b71b93446913f92a5e930baffcbcbe7833e425774241ccc6ccbab8
|
|
7
|
+
data.tar.gz: dfc66d6e26d446223ad952be85c98a4b85c911268df9c4112af8d08716fcbdbd6087648af0dbff4f6ddf00f71d3bec404777aaf28380d4064cc8ccd6f6b3e76a
|
data/jquery_lazy_load.gemspec
CHANGED
|
@@ -10,7 +10,15 @@ Gem::Specification.new do |spec|
|
|
|
10
10
|
spec.email = ["c080609a@gmail.com"]
|
|
11
11
|
|
|
12
12
|
spec.summary = "patched jquery lazy load gem"
|
|
13
|
-
spec.description =
|
|
13
|
+
spec.description = "The applied usage of the Jquery LazyImage plugin.
|
|
14
|
+
Block container with lazy <img> inside has transparent background
|
|
15
|
+
and animated loader.gif placed in its center.
|
|
16
|
+
User sees loader.gif til the original image is loaded.
|
|
17
|
+
It's supposed that the placeholder given by the
|
|
18
|
+
src attribute of the lazy <img> is fully transparent gif which width
|
|
19
|
+
and height are equivalented to width and height of original image
|
|
20
|
+
(to avoid jumping layout).
|
|
21
|
+
You can find the sample of described code snippet on the gem`s homepage."
|
|
14
22
|
spec.homepage = "https://github.com/c080609a/jquery_lazy_load"
|
|
15
23
|
spec.license = "MIT"
|
|
16
24
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jquery_lazy_load
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.0.
|
|
4
|
+
version: 0.1.0.14
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- C80609A
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-12-
|
|
11
|
+
date: 2015-12-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: railties
|
|
@@ -52,7 +52,16 @@ dependencies:
|
|
|
52
52
|
- - "~>"
|
|
53
53
|
- !ruby/object:Gem::Version
|
|
54
54
|
version: '10.0'
|
|
55
|
-
description:
|
|
55
|
+
description: |-
|
|
56
|
+
The applied usage of the Jquery LazyImage plugin.
|
|
57
|
+
Block container with lazy <img> inside has transparent background
|
|
58
|
+
and animated loader.gif placed in its center.
|
|
59
|
+
User sees loader.gif til the original image is loaded.
|
|
60
|
+
It's supposed that the placeholder given by the
|
|
61
|
+
src attribute of the lazy <img> is fully transparent gif which width
|
|
62
|
+
and height are equivalented to width and height of original image
|
|
63
|
+
(to avoid jumping layout).
|
|
64
|
+
You can find the sample of described code snippet on the gem`s homepage.
|
|
56
65
|
email:
|
|
57
66
|
- c080609a@gmail.com
|
|
58
67
|
executables: []
|