Custom Query (18300 matches)
Results (160 - 162 of 18300)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#2354 | fixed | dojo.lfx.html.highlight() stops abruptly for select elements in firefox | ||
Description |
Here is a simple example that works just fine in IE but is broken in firefox. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <title>Test Select Animation</title> <script src="http://download.dojotoolkit.org/dojo_0.4.1.js"></script> <script> dojo.require("dojo.debug.console"); dojo.require("dojo.lfx.*"); function doHighlight(dude) {dojo.lfx.html.highlight([dude], [0,0,0], 2000).play();}; dojo.addOnLoad (function(){ setTimeout('doHighlight("broken")',1000); setTimeout('doHighlight("working")',1000); }); </script> </head> <body> <form> <select id="broken" size="5"><option>broken</option></select> </form> <div id="working">working</div> </body> </html> As far as I can tell, there are no error messages displayed. |
|||
#2358 | fixed | dojo.lfx.wipeOut throws error when wiped element has padding specified in em | ||
Description |
when wiping out a div wih padding: 1px; everything works fine , when i set padding to 1em i got "invalid argument" error in IE ( FF works correctly). when i switch back to px everything works fine... |
|||
#2455 | wontfix | Add a dojo.html.toggleClass function | ||
Description |
When working with classes I find myself constantly needing to add/remove a class from an element for various reasons (usually with onclick). It would be convenient to have a toggleClass function which would test to see if the class existed and added it on false and removed it on true. The same function should probably be written for style properties too. I have written the dojo.html.toggleClass function for myself and it can be seen here: Source: http://infinitysphere.no-ip.org/wsvn/foobar/trunk/dojo_svn_20070124/src/html/style.js?op=file&rev=6 Test: http://infinitysphere.no-ip.org/wsvn/foobar/trunk/dojo_svn_20070124/tests/style/test_style_css_toggle.html?op=file&rev=4 |