-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
37 additions
and
2 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,7 +1,7 @@ | ||
{ | ||
"name": "Respify", | ||
"main": "Respify.js", | ||
"version": "0.3.0", | ||
"version": "0.3.1", | ||
"homepage": "https://github.com/matthisk/Respify", | ||
"authors": [ | ||
"Matthisk Heimensen <[email protected]>" | ||
|
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,35 @@ | ||
{ | ||
"name" : "respify", | ||
"title" : "jQuery Respify", | ||
"description" : "Respify responsive image library. A simple responsive images library, which parses a image from a set of child span nodes with data-media and data-src attributes. It uses media queries to select images.", | ||
"keywords" : [ | ||
"responsive-images", | ||
"images", | ||
"responsive", | ||
"jquery", | ||
"picture" | ||
], | ||
"version" : "0.3.1", | ||
"author" : { | ||
"name" : "Matthisk Heimensen", | ||
"url" : "http://twitter.com/tthisk" | ||
}, | ||
"maintainers": [ | ||
{ | ||
"name": "Matthisk Heimensen", | ||
"url": "https://github.com/matthisk/Respify" | ||
} | ||
], | ||
"licenses": [ | ||
{ | ||
"type": "MIT", | ||
"url": "https://github.com/matthisk/Respify/blob/master/LICENSE" | ||
} | ||
], | ||
"bugs": "https://github.com/matthisk/Respify/issues", | ||
"homepage": "https://github.com/matthisk/Respify", | ||
"docs": "https://github.com/matthisk/Respify/blob/master/README.md", | ||
"dependencies": { | ||
"jquery": ">=1.5" | ||
} | ||
} |
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
* Respify responsive image library | ||
* | ||
* Parse a responsive image from a set of data attributes trough media queries, depends upon the matchMedia polyfill for older browsers | ||
* @version 0.3.0 | ||
* @version 0.3.1 | ||
* @author Matthisk Heimensen <[email protected]> | ||
*/ | ||
(function( w, factory ) { | ||
|