custom-protocol-handler.js 231 B

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