Custom Query (18300 matches)
Results (178 - 180 of 18300)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#181 | duplicate | fisheye widget cuts off images in IE (during expansion) | ||
Description |
See demos/widget/Application1.html for example. When you mouse over an icon an it expands past the edge of it's parent layout pane, the image gets cutoff. I think that when the images are in an expanded state you need |
|||
#182 | invalid | fisheye widget cuts off images in IE (during expansion) | ||
Description |
See demos/widget/Application1.html for example. When you mouse over an icon an it expands past the edge of it's parent layout pane, the image gets cutoff. I think that when the images are in an expanded state you need to make them children of document.body(). But when they are not being expanded it makes sense to revert them to their original parent, in case someone does a display="none" on that node. |
|||
#183 | invalid | MD5 does not calculate correctly. | ||
Description |
Index: MD5.js =================================================================== --- MD5.js (revision 2021) +++ MD5.js (working copy) @@ -22,8 +22,8 @@ } function roll(num,cnt) { return (num<<cnt)|(num>>>(32-cnt)); } this.compute=function(x,len) { + if (!len) var len=x.length*chrsz; if (typeof(x)=="string") x=dojo.crypto.toByteArray(x); - if (!len) var len=x.length; x[len>>5]|=0x80<<((len)%32); x[(((len+64)>>>9)<<4)+14]=len; var a= 1732584193; Something else... would it make sense to set chrsz's value based on djConfig option? djConfig.unicode = true; chrsz = djConfig.unicode?16:8; |