Skip to content

Commit

Permalink
remove stray console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
sjwilliams committed Nov 18, 2015
1 parent c6711fc commit 63ff291
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 9 deletions.
11 changes: 8 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -283,10 +283,10 @@ <h1>LaziestLoader</h1>
</section>

<section class="installation">
<h2>Download v0.7.1</h2>
<h2>Download v0.7.2</h2>
<ol>
<li><a href="https://raw.githubusercontent.com/sjwilliams/laziestloader/v0.7.1/jquery.laziestloader.js">Development Version</a></li>
<li><a href="https://raw.githubusercontent.com/sjwilliams/laziestloader/v0.7.1/jquery.laziestloader.min.js">Production Version</a></li>
<li><a href="https://raw.githubusercontent.com/sjwilliams/laziestloader/v0.7.2/jquery.laziestloader.js">Development Version</a></li>
<li><a href="https://raw.githubusercontent.com/sjwilliams/laziestloader/v0.7.2/jquery.laziestloader.min.js">Production Version</a></li>
<li><span class="code">$ npm install laziestloader</span></li>
<li><span class="code">$ bower install laziestloader</span></li>
</ol>
Expand Down Expand Up @@ -622,6 +622,11 @@ <h2>Trigger</h2>

<section id="releasehistory">
<h2>Release History</h2>
<h4>0.7.2</h4>
<ul>
<li>Removed stray console.log. Sorry.</li>
</ul>

<h4>0.7.1</h4>
<ul>
<li>Fixed bug in detecting if watched event should be native scroll.</li>
Expand Down
4 changes: 1 addition & 3 deletions jquery.laziestloader.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* @preserve LaziestLoader - v0.7.1 - 2015-11-17
* @preserve LaziestLoader - v0.7.2 - 2015-11-17
* A responsive lazy loader for jQuery.
* http://sjwilliams.github.io/laziestloader/
* Copyright (c) 2015 Josh Williams; Licensed MIT
Expand Down Expand Up @@ -34,8 +34,6 @@

var useNativeScroll = (typeof options.event === 'string') && (options.event.indexOf('scroll') === 0);

console.log('use native scroll', useNativeScroll);

/**
* Generate source path of image to load. Take into account
* type of data supplied and whether or not a retina
Expand Down
4 changes: 2 additions & 2 deletions jquery.laziestloader.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "laziestloader",
"version": "0.7.1",
"version": "0.7.2",
"author": "Josh Williams <[email protected]>",
"description": "A responsive-aware jQuery plugin to smartly lazy load images and trigger callbacks.",
"repository": {
Expand Down

0 comments on commit 63ff291

Please sign in to comment.