equal
deleted
inserted
replaced
273 addEheight += TweetHeight; |
273 addEheight += TweetHeight; |
274 |
274 |
275 e.time= frames[i].mytweetsID[k].timeframe; |
275 e.time= frames[i].mytweetsID[k].timeframe; |
276 e.title= frames[i].mytweetsID[k].title; |
276 e.title= frames[i].mytweetsID[k].title; |
277 |
277 |
278 e.mouseover(function(element) { return function (event) { |
278 e.mouseover(function(element) { return function (event) { |
279 |
279 // event.clientX and event.clientY are to raphael what event.pageX and pageY are to jquery. |
280 // event.clientX and event.clientY are to raphael what event.pageX and pageY are to jquery. |
|
281 self.TooltipWidget.show.call(self.TooltipWidget, element.title, element.attr("fill"), event.clientX - 106, event.clientY - 160); |
280 self.TooltipWidget.show.call(self.TooltipWidget, element.title, element.attr("fill"), event.clientX - 106, event.clientY - 160); |
282 element.displayed = true; |
281 element.displayed = true; |
|
282 debugger; |
283 }}(e)).mouseout(function(element) { return function () { |
283 }}(e)).mouseout(function(element) { return function () { |
284 self.TooltipWidget.hide.call(self.TooltipWidget); |
284 self.TooltipWidget.hide.call(self.TooltipWidget); |
285 }}(e)).mousedown(function () { |
285 }}(e)).mousedown(function () { |
286 self._Popcorn.currentTime(this.time/1000); |
286 self._Popcorn.currentTime(this.time/1000); |
287 }); |
287 }); |