summaryrefslogtreecommitdiff
path: root/source/bower_components/modernizr/feature-detects/web-intents.js
blob: d0557fe8cd28a36ae9ba6018976ecc52719a4e99 (plain)
1
2
3
4
5
6
// Tests for the ability to use Web Intents (http://webintents.org).
// By Eric Bidelman

Modernizr.addTest('webintents', function() {
  return !!Modernizr.prefixed('startActivity', navigator);
});