Skip to content

Commit

Permalink
Move polyfill info into separate data to get rid of dupes or potentia…
Browse files Browse the repository at this point in the history
…lly ignore.
  • Loading branch information
SlexAxton committed Feb 25, 2013
1 parent d3dc997 commit f48e459
Show file tree
Hide file tree
Showing 7 changed files with 54 additions and 47 deletions.
23 changes: 1 addition & 22 deletions feature-detects/audio/audiodata.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,28 +3,7 @@
"name": "Audio Data API",
"property": "audiodata",
"aliases": [],
"polyfills": [{
"name": "XAudioJS",
"authors": ["Grant Galitz"],
"href": "https://github.com/grantgalitz/XAudioJS",
"licenses": [],
"notes": [
"Audio sample stream output thin-abstraction library that supports mono and stereo audio, as well as resampling the audio stream.",
"Supports the Mozilla Audio Data API, Web Audio API, Adobe Flash 10, real-time WAV PCM Data URI generation"
]
},{
"name": "dynamicaudio.js",
"authors": ["Ben Firshman"],
"href": "http://github.com/bfirsh/dynamicaudio.js",
"licenses": ["BSD"],
"notes": []
},{
"name": "audiolib.js",
"authors": ["Jussi Kalliokoski"],
"href": "https://github.com/jussi-kalliokoski/audiolib.js",
"licenses": ["MIT"],
"notes": ["specs: incubator group proposed spec, Mozilla Audio Data API (temporary)"]
}],
"polyfills": ["xaudiojs", "dynamicaudiojs", "audiolibjs"],
"tags": ["audio", "media"],
"knownBugs": [],
"doc" : null,
Expand Down
23 changes: 1 addition & 22 deletions feature-detects/audio/webaudio.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,28 +3,7 @@
"name": "Web Audio API",
"property": "webaudio",
"caniuse": "audio-api",
"polyfills": [{
"name": "XAudioJS",
"authors": ["Grant Galitz"],
"href": "https://github.com/grantgalitz/XAudioJS",
"licenses": [],
"notes": [
"Audio sample stream output thin-abstraction library that supports mono and stereo audio, as well as resampling the audio stream.",
"Supports the Mozilla Audio Data API, Web Audio API, Adobe Flash 10, real-time WAV PCM Data URI generation"
]
},{
"name": "dynamicaudio.js",
"authors": ["Ben Firshman"],
"href": "http://github.com/bfirsh/dynamicaudio.js",
"licenses": ["BSD"],
"notes": []
},{
"name": "audiolib.js",
"authors": ["Jussi Kalliokoski"],
"href": "https://github.com/jussi-kalliokoski/audiolib.js",
"licenses": ["MIT"],
"notes": ["specs: incubator group proposed spec, Mozilla Audio Data API (temporary)"]
}],
"polyfills": ["xaudiojs", "dynamicaudiojs", "audiolibjs"],
"aliases": [],
"tags": ["audio", "media"],
"knownBugs": [],
Expand Down
1 change: 1 addition & 0 deletions feature-detects/css/animations.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"name": "CSS Animations",
"property": "cssanimations",
"caniuse": "css-animation",
"polyfills": ["transformie", "csssandpaper"]
"aliases": [],
"tags": ["css"],
"knownBugs": [],
Expand Down
1 change: 1 addition & 0 deletions feature-detects/css/borderimage.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"name": "Border Image",
"property": "borderimage",
"caniuse": "border-image",
"polyfills": ["css3pie"],
"aliases": [],
"tags": ["css"],
"knownBugs": [],
Expand Down
3 changes: 2 additions & 1 deletion feature-detects/css/borderradius.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
{
"name": "Border Radius",
"property": "borderradius",
"caniuse": "border-radius",
"caniuse": "border-radius",,
"polyfills": ["css3pie"],
"aliases": [],
"tags": ["css"],
"knownBugs": [],
Expand Down
3 changes: 1 addition & 2 deletions feature-detects/css/calc.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,7 @@
"warnings": [],
"notes": []
}
!*/
/* DOC
!*//* DOC
Method of allowing calculated values for length units. For example:
Expand Down
47 changes: 47 additions & 0 deletions polyfills.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
{
"css3pie": {
"name": "CSS3 PIE",
"authors": ["Jason Johnston"],
"href": "http://css3pie.com/",
"licenses": ["Apache2", "GPL2"],
"notes": ["CSS3 decoration rendering for IE 6-9. Supports: border-radius, box-shadow, multiple backgrounds, linear gradients, border-image"]
},
"xaudiojs": {
"name": "XAudioJS",
"authors": ["Grant Galitz"],
"href": "https://github.com/grantgalitz/XAudioJS",
"licenses": [],
"notes": [
"Audio sample stream output thin-abstraction library that supports mono and stereo audio, as well as resampling the audio stream.",
"Supports the Mozilla Audio Data API, Web Audio API, Adobe Flash 10, real-time WAV PCM Data URI generation"
]
},
"dynamicaudiojs": {
"name": "dynamicaudio.js",
"authors": ["Ben Firshman"],
"href": "http://github.com/bfirsh/dynamicaudio.js",
"licenses": ["BSD"],
"notes": []
},
"audiolibjs": {
"name": "audiolib.js",
"authors": ["Jussi Kalliokoski"],
"href": "https://github.com/jussi-kalliokoski/audiolib.js",
"licenses": ["MIT"],
"notes": ["specs: incubator group proposed spec, Mozilla Audio Data API (temporary)"]
},
"transformie": {
"name": "transformie",
"authors": ["Paul Bakaus"],
"href": "https://github.com/pbakaus/transformie",
"licenses": ["GPL2", "MIT"],
"notes": []
},
"csssandpaper": {
"name": "CSS Sandpaper",
"authors": ["Zoltan Hawryluk"],
"href": "http://www.useragentman.com/blog/2010/03/09/cross-browser-css-transforms-even-in-ie/",
"licenses": ["MIT"],
"notes": []
}
}

0 comments on commit f48e459

Please sign in to comment.