LEFT | RIGHT |
1 (function(){ | 1 (function() |
| 2 { |
2 document.addEventListener("DOMContentLoaded", function() | 3 document.addEventListener("DOMContentLoaded", function() |
3 { | 4 { |
4 | 5 |
5 /************************************************************************** | 6 /************************************************************************** |
6 * General | 7 * General |
7 **************************************************************************/ | 8 **************************************************************************/ |
8 | 9 |
9 // Change html class name from "no-js" to "js" | 10 // Change html class name from "no-js" to "js" |
10 document.documentElement.className = "js"; | 11 document.documentElement.className = "js"; |
11 | 12 |
(...skipping 315 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
327 }; | 328 }; |
328 | 329 |
329 var browserSelect = document.getElementById("browser-select"); | 330 var browserSelect = document.getElementById("browser-select"); |
330 if (browserSelect) | 331 if (browserSelect) |
331 { | 332 { |
332 new BrowserSelect(browserSelect); | 333 new BrowserSelect(browserSelect); |
333 } | 334 } |
334 | 335 |
335 }, false); | 336 }, false); |
336 }()); | 337 }()); |
LEFT | RIGHT |