Fuente: https://github.com/chamilo/chamilo-lms/releases/download/v1.11.40/chamilo-1.11.40.zip sha256: 1cf4bf2cc7bae1ef1a1eff643235db1d552f78ddf4b6dd1e2d2dac9868679439 Snapshot independiente (rama huerfana); diffable vs 1.11.38. vendor incluido.
19 lines
737 B
JavaScript
19 lines
737 B
JavaScript
// 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;
|
|
}); |