jquery_lazy_load 0.1.0.14 → 0.1.0.15

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
  SHA1:
3
- metadata.gz: f5c2b5de40bf8d536a8109f1c64f1234fe93a2bf
4
- data.tar.gz: 15ad04eb967882bba3c2c58ce1869838d02ae0db
3
+ metadata.gz: 64c1c02bfd76faa752ed9a13157d878e81d647c6
4
+ data.tar.gz: 66c05076c2353865a94a05dba85dac24ccc79cc2
5
5
  SHA512:
6
- metadata.gz: d71c6d8db533bfeedf4d7d848defdc6564c5b7bb592cbcbbc2984cb12d29cd513c84db5f93b71b93446913f92a5e930baffcbcbe7833e425774241ccc6ccbab8
7
- data.tar.gz: dfc66d6e26d446223ad952be85c98a4b85c911268df9c4112af8d08716fcbdbd6087648af0dbff4f6ddf00f71d3bec404777aaf28380d4064cc8ccd6f6b3e76a
6
+ metadata.gz: 2e3cd8ab8066ba107b52266e7ca9e3f60c5b0544ed5f869b826016d8dffeed1c1352b388b54a35b960f52e54b19303faa4f7a4c29521bbde4d3d904d9eecec53
7
+ data.tar.gz: f76e7a79347bd8f7990b68ff46a4147a81dba070695b0e516061f9a9e2b85f2e6d0907654a8f4bb6b6ff8d3241d7ceff1e57eb57e425516a32c3f599774457b0
data/.gitignore CHANGED
@@ -8,3 +8,4 @@
8
8
  /pkg/
9
9
  /spec/reports/
10
10
  /tmp/
11
+ *.gem
data/README.md CHANGED
@@ -3,6 +3,16 @@
3
3
  [![Gem Version](https://badge.fury.io/rb/jquery_lazy_load.svg)](http://badge.fury.io/rb/jquery_lazy_load)
4
4
  [![Build Status](https://travis-ci.org/c080609a/jquery_lazy_load.svg?branch=master)](https://travis-ci.org/c080609a/jquery_lazy_load)
5
5
 
6
+ The applied usage of the Jquery LazyImage plugin.
7
+ Block container with lazy `<img>` inside has transparent background
8
+ and animated loader.gif placed in its center.
9
+ User sees loader.gif til the original image is loaded.
10
+ It's supposed that the placeholder given by the
11
+ src attribute of the lazy `<img>` is fully transparent gif which width
12
+ and height are equivalented to width and height of original image
13
+ (to avoid jumping layout).
14
+
15
+
6
16
  ## Installation
7
17
 
8
18
  Add this line to your application's Gemfile:
@@ -1,3 +1,4 @@
1
+ /*
1
2
  var fLazyStart = function () {
2
3
  $(".lazy-image-wrapper img").lazyload({
3
4
  effect : "fadeIn",
@@ -10,4 +11,4 @@ var fLazyStart = function () {
10
11
 
11
12
  $(function() {
12
13
  fLazyStart();
13
- });
14
+ });*/
@@ -1,3 +1,3 @@
1
1
  module JqueryLazyLoad
2
- VERSION = "0.1.0.14"
2
+ VERSION = "0.1.0.15"
3
3
  end
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.14
4
+ version: 0.1.0.15
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-16 00:00:00.000000000 Z
11
+ date: 2016-10-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: railties
@@ -107,7 +107,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
107
107
  version: '0'
108
108
  requirements: []
109
109
  rubyforge_project:
110
- rubygems_version: 2.4.7
110
+ rubygems_version: 2.5.1
111
111
  signing_key:
112
112
  specification_version: 4
113
113
  summary: patched jquery lazy load gem