Hi,

I'm not sure if this is a bug in Mochikit, or my error.

The following do not work in IE 6:

<script>
    callLater(1, window.print);
    callLater(2, alert, 'drink beer');
</script>

yet these do:
<script>
    function f() {
        window.print();
    }
    function g() {
        alert('drink beer');
    }
    callLater(1, f);
    callLater(2, g);
</script>

Works beautifully in Firefox though.Tried with Mochikit 1.3.1 and a
recent dump from SVN.

Any thoughts?
Jon.


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"MochiKit" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/mochikit?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to