I posted this problem some time ago and learned that this was fixed. http://trac.mochikit.com/ticket/149
I copied the diff of 149 into my MK and the problem still exists... Here is a simple example (with the 149-diff code): --start <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="nl" lang="nl"> <head> <title>MochiKit Safari test</title> <script type="text/javascript" src="javascript/mochikit/MochiKit/MochiKit.js"></script> <script type="text/javascript" src="javascript/mochikit/MochiKit/New.js"></script> </head> <body> <script type="text/javascript"> connect(window, 'onload' , function() { connect($('up'), 'onclick', function() {slideUp('content')} ); connect($('down'), 'onclick', function() {slideDown('content')} ); }); </script> <div id="content" style="height:100px;background-color:green;color:white;"> <div id="innercontent"> The slideUp function works, but on Safari the slideDown does not show the transition, only the endresult.<br/> The second time you press slideDown, it does work!? </div> </div> <button id="up" class="button">slideUp</button> <button id="down" class="button">slideDown</button> </body> </html> --end Or view it online (with Safari of course): http://bartbons.demon.nl/polaris/testmk.php Thx, Bart --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
