equal
deleted
inserted
replaced
133 var correction = IriSP.jQuery(this).outerWidth() / 2; |
133 var correction = IriSP.jQuery(this).outerWidth() / 2; |
134 |
134 |
135 var offset_x = offset.left + correction - 106; |
135 var offset_x = offset.left + correction - 106; |
136 if (offset_x < 0) |
136 if (offset_x < 0) |
137 offset_x = 0; |
137 offset_x = 0; |
138 |
138 |
139 self.TooltipWidget.show(divTitle, color, offset_x, event.pageY - 160); |
139 var offset_y = offset.top; |
|
140 console.log(offset_y); |
|
141 self.TooltipWidget.show(divTitle, color, offset_x, offset_y - 160); |
140 } })(divTitle)).mouseout(function(){ |
142 } })(divTitle)).mouseout(function(){ |
141 IriSP.jQuery(this).animate({opacity: 0.3}, 5); |
143 IriSP.jQuery(this).animate({opacity: 0.3}, 5); |
142 self.TooltipWidget.hide(); |
144 self.TooltipWidget.hide(); |
143 }); |
145 }); |
144 |
146 |