Custom Query (7259 matches)
Results (64 - 66 of 7259)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#1762 | fixed | syntax error for IE6 in ui.slider.js | ||
Description |
A veru blocking problem in ui.slider.js On line 31 ... change: function(e, ui) { cur[0].value = ui.value; cur[0].setAttribute("value", ui.value); }, ... the comma at the end of the line causes a syntax error in IE6 sp2 / WinXP. This blocks the script execution. Removing this last comma solves the problem. Cheers, Matt |
|||
#1770 | wontfix | sortable incorrectly reorders ordered list | ||
Description |
When using a sortable where the container is an ordered list, the numbers get messed up. It looks like it adds a new list item to drag and hides the old one because if you have 1,2,3 and pick up 2, 1 and 3 will be there and 4 will be dragable. <!DOCTYPE html PUBLIC "-W3CDTD XHTML 1.0 TransitionalEN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html> <head>
</head> <body> <ol id="faqlist">
</ol> <script type="text/javascript">
</script> </body> </html> |
|||
#1772 | fixed | accordion/dimensions - Object doesn't support this property or method in IE6/7 | ||
Description |
I've been using jquery 2.1, ui.accordion.js and jquery.dimensions.js - everything works fine in firefox, but in IE6/7 I get Object doesn't support this property or method on line 169 when I click on an accordion tab - the tab moves but there's a lot of flicker. I'm assuming this is referring to jquery.dimensions.js, in which case it's the show part of: $.ui.accordion.animations[settings.animated]({
I'm using this to define the accordion (unordered list):
}); |