Skip to content
This repository has been archived by the owner on Sep 6, 2022. It is now read-only.

Commit

Permalink
Merge remote-tracking branch 'origin/master' into 3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mike-engel committed Sep 30, 2015
2 parents 4fb7c82 + 87597fc commit e81924b
Show file tree
Hide file tree
Showing 10 changed files with 14 additions and 16 deletions.
7 changes: 3 additions & 4 deletions dist/picturefill.js
@@ -1,4 +1,4 @@
/*! Picturefill - v3.0.0 - 2015-09-30
/*! Picturefill - v3.0.1 - 2015-09-30
* http://scottjehl.github.io/picturefill
* Copyright (c) 2015 https://github.com/scottjehl/picturefill/blob/master/Authors.txt; Licensed MIT
*/
Expand Down Expand Up @@ -71,7 +71,7 @@
}
})(window);

/*! Picturefill - v3.0.0-beta
/*! Picturefill - v3.0.1
* http://scottjehl.github.io/picturefill
* Copyright (c) 2015 https://github.com/scottjehl/picturefill/blob/master/Authors.txt;
* License: MIT
Expand Down Expand Up @@ -1173,7 +1173,6 @@
bestCandidate,
curSrc,
curCan,
isSameSet,
candidateSrc,
abortCurSrc;

Expand All @@ -1196,7 +1195,7 @@

// if current candidate is "best", "better" or "okay",
// set it to bestCandidate
if ( curCan && isSameSet && curCan.res >= dpr ) {
if ( curCan.res >= dpr ) {
bestCandidate = curCan;
}
}
Expand Down
4 changes: 2 additions & 2 deletions dist/picturefill.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/plugins/intrinsic-dimension/pf.intrinsic.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 dist/plugins/mutation/pf.mutation.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 dist/plugins/oldie/pf.oldie.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 dist/plugins/print/pf.print.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 dist/plugins/typesupport/pf.type.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
@@ -1,7 +1,7 @@
{
"name": "picturefill",
"description": "A responsive image polyfill.",
"version": "3.0.0",
"version": "3.0.1",
"homepage": "https://scottjehl.github.io/picturefill/",
"bugs": "https://github.com/scottjehl/picturefill/issues",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion picturefill.json
Expand Up @@ -2,7 +2,7 @@
"name": "Picturefill",
"title": "Picturefill",
"description": "A polyfill for responsive images (http://picture.responsiveimages.org/) that you can use today.",
"version": "3.0.0",
"version": "3.0.1",
"homepage": "http://scottjehl.github.io/picturefill",
"author": {
"name": "https://github.com/scottjehl/picturefill/blob/master/Authors.txt",
Expand Down
5 changes: 2 additions & 3 deletions src/picturefill.js
@@ -1,4 +1,4 @@
/*! Picturefill - v3.0.0-beta
/*! Picturefill - v3.0.1
* http://scottjehl.github.io/picturefill
* Copyright (c) 2015 https://github.com/scottjehl/picturefill/blob/master/Authors.txt;
* License: MIT
Expand Down Expand Up @@ -1100,7 +1100,6 @@
bestCandidate,
curSrc,
curCan,
isSameSet,
candidateSrc,
abortCurSrc;

Expand All @@ -1123,7 +1122,7 @@

// if current candidate is "best", "better" or "okay",
// set it to bestCandidate
if ( curCan && isSameSet && curCan.res >= dpr ) {
if ( curCan.res >= dpr ) {
bestCandidate = curCan;
}
}
Expand Down

0 comments on commit e81924b

Please sign in to comment.