Michael Lee

Results 30 comments of Michael Lee

`HTTP 401` is a red herring and an incorrect response; `FileTransfer.download()` destination parameter must change from `oFile.toURL()` to `oFile.nativeURL`. Protocol/path returned from `toURL()` has changed as inherited from `cordova-file` plugin,...

We cannot use this library as need to handle exceptions. If we can define/debug the problem here, perhaps another developer can assist.

This error is triggered when you pass an object, rather than a string.

Check you have included all tags in config.xml as per readme.md. I had to do that for one of my projects.

Mitigate flickering by reducing DOM updates (compare scope objects), thus improved my app on all platforms. Would be good to see this improvement however.

Invoke your worker inline. Eg. Copy/paste this example to safari > develop > iPhone > console: ``` var blob = new Blob(["onmessage = function(e) { postMessage('msg from worker'); }"]); var...

We also experience issue with iFrame from local source not loading with origin error message. Inspecting in Safari debugger, parent document.origin = 'file__0'.

iFrame initialises before being subsequently denied. Could be this WebKit issue: https://issues.apache.org/jira/browse/CB-11885?jql=project%20%3D%20CB%20AND%20labels%20%3D%20wkwebview-known-issues

@Zorgatone for the interim, you can transform paths in xhr.js._wk_open() as required.

These patches may provide some interim help for folks, below. PATCH: ``` const fIosCordovaKeyboardBugfix = () => { if (sPlatform === 'iOS') { setTimeout(()=>{ document.getElementById("id-select").scrollIntoView(); },500); }; }; ``` Re:...