()
| 37 | } |
| 38 | |
| 39 | function initSideBar() { |
| 40 | var config = exampleConfig; |
| 41 | var sideBar = $("ul#sidebar-menu"); |
| 42 | for (var key in config) { |
| 43 | if (typeof config[key] === 'object' && config[key] !== null) { |
| 44 | sideBar.append(createSideBarMenuItem(key, config[key], containExamples)); |
| 45 | } |
| 46 | } |
| 47 | $(sideBar).ready(function () { |
| 48 | initSelect(); |
| 49 | }); |
| 50 | |
| 51 | } |
| 52 | |
| 53 | function screenResize() { |
| 54 | window.onresize = function () { |
no test coverage detected