()
| 696 | Attaches highlighting to the page load event. |
| 697 | */ |
| 698 | function initHighlightingOnLoad() { |
| 699 | if (window.addEventListener) { |
| 700 | window.addEventListener('DOMContentLoaded', initHighlighting, false); |
| 701 | window.addEventListener('load', initHighlighting, false); |
| 702 | } else if (window.attachEvent) |
| 703 | window.attachEvent('onload', initHighlighting); |
| 704 | else |
| 705 | window.onload = initHighlighting; |
| 706 | } |
| 707 | |
| 708 | var languages = {}; // a shortcut to avoid writing "this." everywhere |
| 709 |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…