From 7cc7910df63d19e7ebc67bb1156437f0559712d7 Mon Sep 17 00:00:00 2001 From: Lars Henrik Mai Date: Sun, 21 Sep 2014 12:25:47 +0200 Subject: add foundation via bower --- .../modernizr/feature-detects/forms-speechinput.js | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 source/bower_components/modernizr/feature-detects/forms-speechinput.js (limited to 'source/bower_components/modernizr/feature-detects/forms-speechinput.js') diff --git a/source/bower_components/modernizr/feature-detects/forms-speechinput.js b/source/bower_components/modernizr/feature-detects/forms-speechinput.js new file mode 100644 index 0000000..48c9021 --- /dev/null +++ b/source/bower_components/modernizr/feature-detects/forms-speechinput.js @@ -0,0 +1,19 @@ +// speech input for inputs +// by @alrra + + +// `webkitSpeech` in elem +// doesn`t work correctly in all versions of Chromium based browsers. +// It can return false even if they have support for speech i.imgur.com/2Y40n.png +// Testing with 'onwebkitspeechchange' seems to fix this problem + +// this detect only checks the webkit version because +// the speech attribute is likely to be deprecated in favor of a JavaScript API. +// http://lists.w3.org/Archives/Public/public-webapps/2011OctDec/att-1696/speechapi.html + +// FIXME: add support for detecting the new spec'd behavior + +Modernizr.addTest('speechinput', function(){ + var elem = document.createElement('input'); + return 'speech' in elem || 'onwebkitspeechchange' in elem; +}); \ No newline at end of file -- cgit v1.2.1