(src, on)
| 77 | |
| 78 | // hilite changes the highlighting of elements corresponding to specified src. |
| 79 | function hilite(src, on) { |
| 80 | if (on) { |
| 81 | matches.add(src); |
| 82 | } else { |
| 83 | matches.delete(src); |
| 84 | } |
| 85 | toggleClass(src, 'hilite', on); |
| 86 | return true; |
| 87 | } |
| 88 | |
| 89 | // Display action menu (triggered by right-click on a frame) |
| 90 | function showActionMenu(e, box) { |
no test coverage detected
searching dependent graphs…