Skip to content

Commit

Permalink
Solve some documentation issues (#2568)
Browse files Browse the repository at this point in the history
* Solve #2418

* Solves #2085 + update spec link
  • Loading branch information
Markel committed Jun 1, 2020
1 parent fa7149c commit 771354e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions feature-detects/audio/webaudio.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@
"authors": ["Addy Osmani"],
"notes": [{
"name": "W3C Spec",
"href": "https://dvcs.w3.org/hg/audio/raw-file/tip/webaudio/specification.html"
"href": "https://webaudio.github.io/web-audio-api/"
}]
}
!*/
/* DOC
Detects the older non standard webaudio API, (as opposed to the standards based AudioContext API)
Check for the Web Audio API
*/
define(['Modernizr'], function(Modernizr) {
Modernizr.addTest('webaudio', function() {
Expand Down
2 changes: 1 addition & 1 deletion feature-detects/svg/filters.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
}
!*/
define(['Modernizr'], function(Modernizr) {
// Should fail in Safari: https://stackoverflow.com/questions/9739955/feature-detecting-support-for-svg-filters.
// How it is made to fail in pre 6 versions of Safari: https://stackoverflow.com/questions/9739955/feature-detecting-support-for-svg-filters.
Modernizr.addTest('svgfilters', function() {
var result = false;
try {
Expand Down

0 comments on commit 771354e

Please sign in to comment.