()
| 136 | } |
| 137 | |
| 138 | function updateListSelectedHint() { |
| 139 | var hint = $(SELECTOR_CURRENT); |
| 140 | hint.off('mouseover').on('mouseover', function (e) { |
| 141 | updatePageHint('full'); |
| 142 | this.select(); |
| 143 | }); |
| 144 | hint.off('mouseout').on('mouseout', function (e) { |
| 145 | updatePageHint('short'); |
| 146 | }); |
| 147 | } |
| 148 | |
| 149 | function updateDistSelector() { |
| 150 | var distSelector = $(SELECTOR_DIST); |
no test coverage detected
searching dependent graphs…