blob: 25341894d0df56fc301cb7777f29ed9bcc0b59de (
plain)
1
2
3
4
5
6
7
8
9
10
|
/*
Custom protocol handler support
http://developers.whatwg.org/timers.html#custom-handlers
Added by @benschwarz
*/
Modernizr.addTest('customprotocolhandler', function () {
return !!navigator.registerProtocolHandler;
});
|