writing to IE console with amber

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
4 messages Options
Reply | Threaded
Open this post in threaded view
|

writing to IE console with amber

laci
console log: 'hi' - writes to FireFox console
same fails to write into Internet Explorer's console
any suggestion on that

Transcript is of course a good fallback mechanism for loggin info.
Thanks ins advance
Reply | Threaded
Open this post in threaded view
|

Re: writing to IE console with amber

laci
I am having serious problems supporting IE.
I have downloaded the latest version of amber.
The amber/devel variant works quite OK.
The amber/deploy though throws exception in es5-sham.min.js

Typically initial loading fails, refreshing the page - when most of the modules are loaded already - mostly succeeds.

I have retrieved the most recent version of es5-sham.min.js.
Version v2.0.3 of jQuery although supposed to support IE11, throws error, therefore I am using v1.11.0 of jQuery.

Any suggestion how to go about it.
Thanks
Reply | Threaded
Open this post in threaded view
|

Re: writing to IE console with amber

Nicolas Petton
Hi!

Which version of IE are you supporting? What exception is thrown?

Nico

laci writes:

> I am having serious problems supporting IE.
> I have downloaded the latest version of amber.
> The amber/devel variant works quite OK.
> The amber/deploy though throws exception in es5-sham.min.js
>
> Typically initial loading fails, refreshing the page - when most of the
> modules are loaded already - mostly succeeds.
>
> I have retrieved the most recent version of es5-sham.min.js.
> Version v2.0.3 of jQuery although supposed to support IE11, throws error,
> therefore I am using v1.11.0 of jQuery.
>
> Any suggestion how to go about it.
> Thanks
>
>
>
> --
> View this message in context: http://forum.world.st/writing-to-IE-console-with-amber-tp4748892p4749060.html
> Sent from the Amber Smalltalk mailing list archive at Nabble.com.


--
Nicolas Petton
http://nicolas-petton.fr

--
You received this message because you are subscribed to the Google Groups "amber-lang" group.
To unsubscribe from this group and stop receiving emails from it, send an email to [hidden email].
For more options, visit https://groups.google.com/d/optout.
Reply | Threaded
Open this post in threaded view
|

Re: writing to IE console with amber

laci
This post was updated on .
I could trace the problem to load timeout in require.js.
This piece of code fixes that.

        $(document).ready(function () {
            require.config({
                waitSeconds: 0
            });
            require(["amber/deploy"], function (smalltalk) {

Thanks