(gd)
| 8 | } |
| 9 | |
| 10 | function clearOutline(gd) { |
| 11 | var zoomLayer = gd._fullLayout._zoomlayer; |
| 12 | if(zoomLayer) { |
| 13 | // until we get around to persistent selections, remove the outline |
| 14 | // here. The selection itself will be removed when the plot redraws |
| 15 | // at the end. |
| 16 | zoomLayer.selectAll('.select-outline').remove(); |
| 17 | } |
| 18 | |
| 19 | gd._fullLayout._outlining = false; |
| 20 | } |
| 21 | |
| 22 | module.exports = { |
| 23 | clearOutlineControllers: clearOutlineControllers, |
no outgoing calls
no test coverage detected
searching dependent graphs…