setImmediate()

in src/windows/InAppBrowserProxy.js [361:383]


        setImmediate(function () {
            var filePath = args[0];
            var hasCallback = args[1];

            filePath = filePath && urlutil.makeAbsolute(filePath);

            if (isWebViewAvailable && browserWrap && popup) {
                // CB-12364 getFileFromApplicationUriAsync does not support ms-appx-web
                var uri = new Windows.Foundation.Uri(filePath.replace('ms-appx-web:', 'ms-appx:'));
                Windows.Storage.StorageFile.getFileFromApplicationUriAsync(uri)
                    .then(function (file) {
                        return Windows.Storage.FileIO.readTextAsync(file);
                    })
                    .done(
                        function (code) {
                            injectCSS(popup, code, hasCallback && win);
                        },
                        function () {
                            // no-op, just catch an error
                        }
                    );
            }
        });