jsOAuth icon indicating copy to clipboard operation
jsOAuth copied to clipboard

Error auth Appelerator sdk version >=2

Open afranioce opened this issue 13 years ago • 0 comments

remove global to

row 806

if (typeof global.Titanium !== 'undefined' && typeof global.Titanium.Network.createHTTPClient != 'undefined') { XHR = global.Titanium.Network.createHTTPClient();

to

if (typeof Titanium !== 'undefined' && typeof Titanium.Network.createHTTPClient != 'undefined') { XHR = Titanium.Network.createHTTPClient();

afranioce avatar Oct 16 '12 18:10 afranioce