B4J Question [ABMaterial] always spinning circles on IE

mcGeorge

Member
Licensed User
Longtime User
I have an "old" ABMaterial app on 3.x, and it runs fine on Chrome, Edge, IE, and Firefox.

Now I'm building a new ABMaterial application (Version 4.03) based on the template, and it wouldn't go past the spinning circles on IE. On Chrome it works fine but not on the IE. (BTW: In the same IE is the old ABMaterial running fine.)

I removed all security restrictions, everything that I found in the configuration but it changed nothing.

ABMaterial
3.x - Chrome=fine, Edge=fine, IE=fine, Firefox=fine
4.x - Chrome=fine, Edge=fine, IE=hang, Firefox=fine

Any idea, why the old version is running fine and the new version - only in the IE - not?

Thanks in advance
Georg
 

mindful

Active Member
Licensed User
You can try clearing the cache of ie ... or hit a ctrl + f5. If it still doesn't work press f12 to see the ie debug window and look for any errors in console.
 
Upvote 0

mcGeorge

Member
Licensed User
Longtime User
I found this:

upload_2018-1-29_15-6-48.png


Is this helpful?

obviously generate this the syntax error:

B4X:
const eventListenerOptionsSupported = () => {
    let supported = false;
    try {
        const opts = Object.defineProperty({}, 'passive', {get() {supported = true;}});
        window.addEventListener("test", null, opts);
    } catch (e) { };
    return supported;
};

sorry, I am not a java guy, what is the error in that script?
 
Last edited:
Upvote 0
Top