(type, selection)
| 891 | // to detect the button elements in FF38 (like on CircleCI 2016/08/02), |
| 892 | // so dispatch the mouse event directly about the nodes instead. |
| 893 | function mouseEvent(type, selection) { |
| 894 | var ev = new window.MouseEvent(type, { bubbles: true }); |
| 895 | selection.node().dispatchEvent(ev); |
| 896 | } |
| 897 | |
| 898 | function selectHeader(menuIndex) { |
| 899 | var headers = d3SelectAll('.' + constants.headerClassName); |
no outgoing calls
no test coverage detected
searching dependent graphs…