cordova-plugin-ionic-webview icon indicating copy to clipboard operation
cordova-plugin-ionic-webview copied to clipboard

Trying to use import modules using the plugin does not work - any way to get around this?

Open hmpmarketing opened this issue 1 year ago • 0 comments

Hi,

I have been trying to no avail importing a module in a webview with cordova. This Particular library from chart IQ only use import statements and I cant get to work. On a browser all works fine.

Something like:

`

    // This inline script acts as the entry point, without creating a separate external file.
    // Reference a file of statically defined chart data.
    //import sample5min from "chartiq/examples/data/STX_SAMPLE_5MIN.js";
    // Reference the charting library.
    import "chartiq/js/standard.js";
    import "chartiq/js/addOns.js";
    import { CIQ } from "chartiq/js/components.js";

    Object.assign(globalThis, { CIQ });

    // Instantiate a CIQ.ChartEngine object, the main object for creating charts.
    window.stxx = new CIQ.ChartEngine({
        container: document.querySelector(".chartContainer")
    });
    </script>`

CIQ / stxx is not available in window no matter what I try. Anything Im missing with this plugin?

Using latest version of cordova ios 6.3

Thanks everyone!

hmpmarketing avatar Jun 08 '23 10:06 hmpmarketing