(gd)
| 180 | } |
| 181 | |
| 182 | function deactivateSelection(gd) { |
| 183 | if(!couldHaveActiveSelection(gd)) return; |
| 184 | |
| 185 | var id = gd._fullLayout._activeSelectionIndex; |
| 186 | if(id >= 0) { |
| 187 | clearOutlineControllers(gd); |
| 188 | delete gd._fullLayout._activeSelectionIndex; |
| 189 | draw(gd); |
| 190 | } |
| 191 | } |
no test coverage detected
searching dependent graphs…