extjs-gpl
Version:
GPL licensed version of Sencha Ext JS
25 lines (20 loc) • 590 B
JavaScript
/**
* Provides access to the audio and video capture capabilities of the device.
*
* @mixins Ext.device.capture.Abstract
*/
Ext.define('Ext.device.Capture', {
singleton: true,
requires: [
'Ext.device.Communicator',
'Ext.device.capture.Cordova',
'Ext.device.capture.Simulator'
],
constructor: function() {
var browserEnv = Ext.browser.is;
if (browserEnv.WebView && browserEnv.Cordova) {
return Ext.create('Ext.device.capture.Cordova');
}
return Ext.create('Ext.device.capture.Simulator');
}
});