Letractively / tooltips

Automatically exported from code.google.com/p/tooltips
0 stars 0 forks source link

ON TTIP APPEARS IE7 MADE A SMALL SCROLL #29

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. attach title to a image
2. use CSS-query for CoolTips initialization:
$$("ul .ttt").each( function(image) {new
Tooltip(image{opacity:1,backgroundColor: "#DFEAFF",maxWidth:300});});

3. mouse over over the image class "ttt" under ul tags, and the page scroll
a bit

What is the expected output? What do you see instead?
The same behavoir of the demo :)

What version of the product are you using? On what operating system?
Tested over IE7 (7.0.6001.18000), WinVista

Please provide any additional information below.
I tested with prototype/scriptaculous 1.7.0 and with the version inside
http://tooltips.googlecode.com/files/tooltips1.0.zip

Original issue reported on code.google.com by desarrolloweb on 14 Oct 2008 at 6:32

Attachments:

GoogleCodeExporter commented 8 years ago
sorry for the caps :S

Original comment by desarrolloweb on 14 Oct 2008 at 6:32

GoogleCodeExporter commented 8 years ago
$$("ul .ttt").each( function(image) {new
Tooltip(image{opacity:1,backgroundColor: "#DFEAFF",maxWidth:300});});

Is it because you are getting a javascript/prototype error due to the missing 
comma?
$$("ul .ttt").each( function(image) {new
Tooltip(image,{opacity:1,backgroundColor: "#DFEAFF",maxWidth:300});});

Original comment by lsk...@gmail.com on 28 Oct 2008 at 5:18

GoogleCodeExporter commented 8 years ago
many thx iskatz! 
thats my mistake :)

Original comment by desarrolloweb on 28 Oct 2008 at 6:11