This repository has been archived by the owner on Sep 6, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Conflicts: .gitignore README.md bower.json dist/picturefill.js dist/picturefill.min.js examples/demo-01.html examples/demo-04.html gruntfile.js index.html package.json picturefill.json src/picturefill.js tests/tests.js
- Loading branch information
Showing
67 changed files
with
20,340 additions
and
13,422 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,24 @@ | ||
.DS_Store | ||
.project | ||
node_modules | ||
**/.sass-cache | ||
**/.sass-cache/* | ||
*.bak | ||
*.zip | ||
.grunt | ||
.AppleDouble | ||
.LSOverride | ||
|
||
# Icon must end with two \r | ||
Icon | ||
|
||
# Thumbnails | ||
._* | ||
|
||
# Files that might appear on external disk | ||
.Spotlight-V100 | ||
.Trashes | ||
|
||
# Directories potentially created on remote AFP share | ||
.AppleDB | ||
.AppleDesktop | ||
Network Trash Folder | ||
Temporary Items | ||
.apdisk | ||
|
||
*.bak | ||
node_modules | ||
*.zip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
"excludeFiles": [ | ||
"node_modules", | ||
"dist", | ||
"tests/resources", | ||
"src/external" | ||
"tests", | ||
"examples" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,33 @@ | ||
{ | ||
"name": "picturefill", | ||
"repo": "scottjehl/picturefill", | ||
"description": "A Polyfill for the HTML Picture Element (http://picture.responsiveimages.org/) that you can use today.", | ||
"version": "2.3.1", | ||
"main": "dist/picturefill.js", | ||
"scripts": [ | ||
"dist/picturefill.js" | ||
], | ||
"license": "MIT", | ||
"homepage": "http://scottjehl.github.com/picturefill/", | ||
"authors": [ | ||
"Scott Jehl <[email protected]>" | ||
], | ||
"moduleType": [ | ||
"amd", | ||
"globals", | ||
"node" | ||
], | ||
"keywords": [ | ||
"picture", | ||
"srcset", | ||
"polyfill" | ||
], | ||
"ignore": [ | ||
"**/.*", | ||
"node_modules", | ||
"bower_components", | ||
"test", | ||
"tests", | ||
"examples" | ||
] | ||
} | ||
"name": "picturefill", | ||
"repo": "scottjehl/picturefill", | ||
"description": "A Polyfill for the HTML Picture Element (http://picture.responsiveimages.org/) that you can use today.", | ||
"main": "dist/picturefill.js", | ||
"scripts": [ | ||
"dist/picturefill.js" | ||
], | ||
"license": "MIT", | ||
"homepage": "http://scottjehl.github.com/picturefill/", | ||
"authors": [ | ||
"Scott Jehl <[email protected]>" | ||
], | ||
"moduleType": [ | ||
"amd", | ||
"globals", | ||
"node" | ||
], | ||
"keywords": [ | ||
"picture", | ||
"srcset", | ||
"polyfill" | ||
], | ||
"ignore": [ | ||
"**/.*", | ||
"node_modules", | ||
"bower_components", | ||
"test", | ||
"tests", | ||
"examples", | ||
"perf-test" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"name": "scottjehl/picturefill", | ||
"description": "A responsive image polyfill for <picture>, srcset, sizes, and more.", | ||
"type": "component", | ||
"homepage": "http://scottjehl.github.com/picturefill/", | ||
"license": "MIT", | ||
"extra": { | ||
"component": { | ||
"scripts": [ | ||
"dist/picturefill.js" | ||
], | ||
"files": [ | ||
"dist/picturefill.min.js", | ||
"extensions/ie8-mq-shim.js" | ||
] | ||
} | ||
} | ||
} |
Oops, something went wrong.