Index: trunk/extensions/Lingo/libs/Lingo.js |
— | — | @@ -1,10 +1,6 @@ |
2 | 2 | jQuery(function ($){ |
3 | 3 | |
4 | | - var tooltips = $(".tooltip"); |
5 | | - // var tooltip_wrapper = tooltip.find(".tooltip_tipwrapper"); |
6 | | - // var tooltip_tip = tooltip_wrapper.find(".tooltip_tip"); |
7 | | - |
8 | | - tooltips |
| 4 | + $(".tooltip") |
9 | 5 | .mouseenter(function(){ |
10 | 6 | |
11 | 7 | var tip = $(this); |
— | — | @@ -19,7 +15,6 @@ |
20 | 16 | |
21 | 17 | wrapper |
22 | 18 | .css({ |
23 | | - // 'visibility': 'hidden', |
24 | 19 | 'visibility': 'visible', |
25 | 20 | 'display': 'block', |
26 | 21 | 'width': '10000000px' |
— | — | @@ -47,12 +42,7 @@ |
48 | 43 | |
49 | 44 | tipdef.width( maxAvailableWidth ); |
50 | 45 | |
51 | | - // tipdef.css({ |
52 | | - // 'position': 'fixed', |
53 | | - // 'top': '0px', |
54 | | - // 'left': '0px' |
55 | | - // }); |
56 | | - // if constrained to the window width, i.e. |
| 46 | + // height if constrained to the window width, i.e. |
57 | 47 | // the minimum width necessary if the full window width were available |
58 | 48 | var heightAtMaxWidth = tipdef.height(); |
59 | 49 | |
— | — | @@ -85,14 +75,14 @@ |
86 | 76 | |
87 | 77 | // if it is too large anyway, just set max available width and be |
88 | 78 | // done with it |
89 | | - wrapper.css({ |
90 | | - 'width': maxAvailableWidth + 'px', |
91 | | - 'padding-left': '10px', |
92 | | - 'left': '0px', |
93 | | - 'top': '0px', |
94 | | - 'padding-bottom': '0px', |
95 | | - 'padding-top' : (tip.outerHeight() + 5 ) +'px' |
96 | | - }); |
| 79 | + wrapper.css({ |
| 80 | + 'width': maxAvailableWidth + 'px', |
| 81 | + 'padding-left': '10px', |
| 82 | + 'left': '0px', |
| 83 | + 'top': '0px', |
| 84 | + 'padding-bottom': '0px', |
| 85 | + 'padding-top' : (tip.outerHeight() + 5 ) +'px' |
| 86 | + }); |
97 | 87 | |
98 | 88 | } else { |
99 | 89 | |
— | — | @@ -143,7 +133,7 @@ |
144 | 134 | if ( placeAbove ) { |
145 | 135 | wrapper.css({ |
146 | 136 | 'top': ( - tipdef.outerHeight() - 5) + 'px', |
147 | | - 'padding-bottom': '10px', |
| 137 | + 'padding-bottom': (tip.outerHeight() + 5 ) +'px', |
148 | 138 | 'padding-top' : '0px' |
149 | 139 | }); |
150 | 140 | |
— | — | @@ -166,7 +156,6 @@ |
167 | 157 | |
168 | 158 | wrapper |
169 | 159 | .css({ |
170 | | - // 'width': '100%', |
171 | 160 | 'height': 'auto', |
172 | 161 | 'visibility': 'visible', |
173 | 162 | 'display': 'none' |