Adapt highlighting of objects: Difference between revisions
From JSXGraph Wiki
| A WASSERMANN (talk | contribs) No edit summary | A WASSERMANN (talk | contribs) No edit summary | ||
| Line 29: | Line 29: | ||
| JXG.Line.prototype.highlight = function(){ | JXG.Line.prototype.highlight = function(){ | ||
|      infobox.innerHTML = this.board.mousePosAbs.toString(); |      infobox.innerHTML = this.board.mousePosAbs.toString(); | ||
|      infobox.style.left = (this.board. |      infobox.style.left = (this.board.mousePosRel[0]+20)+'px'; | ||
|      infobox.style.top =  (this.board. |      infobox.style.top =  (this.board.mousePosRel[1]-20)+'px'; | ||
|      infobox.style.display = 'block'; |      infobox.style.display = 'block'; | ||
| } | } | ||
| JXG.Line.prototype.noHighlight = function(){ | JXG.Line.prototype.noHighlight = function(){ | ||
|      infobox.style.display = ' |      infobox.style.display = 'none'; | ||
| } | } | ||
| c.highlight = function(){ | c.highlight = function(){ | ||
Revision as of 16:44, 18 December 2009
