mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-15 19:26:42 +08:00
FormData support added
This commit is contained in:
@ -110,7 +110,7 @@
|
||||
}
|
||||
|
||||
var support = {
|
||||
blob: 'FileReader' in self && 'Blob' in self && (function () {
|
||||
blob: 'FileReader' in global && 'Blob' in global && (function () {
|
||||
try {
|
||||
new Blob();
|
||||
return true
|
||||
@ -118,7 +118,7 @@
|
||||
return false
|
||||
}
|
||||
})(),
|
||||
formData: 'FormData' in self
|
||||
formData: 'FormData' in global
|
||||
}
|
||||
|
||||
function Body() {
|
||||
|
Reference in New Issue
Block a user