extjs-gpl
Version:
GPL licensed version of Sencha Ext JS
26 lines (23 loc) • 764 B
JavaScript
/**
* Allows you to interact with the Twitter API on iOS devices from within your Cordova application.
*
* For setup information, please read the [plugin guide](https://github.com/phonegap/phonegap-plugins/tree/master/iOS/Twitter).
*
* @mixins Ext.device.twitter.Abstract
*/
Ext.define('Ext.device.Twitter', {
alternateClassName:'Ext.ux.device.Twitter',
singleton: true,
requires: [
'Ext.device.Communicator',
'Ext.device.twitter.*'
],
constructor: function() {
var browserEnv = Ext.browser.is;
if (browserEnv.WebView && browserEnv.Cordova) {
return Ext.create('Ext.device.twitter.Cordova');
} else {
return Ext.create('Ext.device.twitter.Abstract');
}
}
});