()
| 18 | |
| 19 | //左侧层级不包含例子,只包含分类 |
| 20 | function initPage() { |
| 21 | var sideBar = $("ul#sidebar-menu"); |
| 22 | var chartList = $("#charts-list"); |
| 23 | for (var key in exConfig) { |
| 24 | if (typeof exConfig[key] === 'object' && exConfig[key] !== null) { |
| 25 | sideBar.append(createSideBarMenuItem(key, exConfig[key], containExamples)); |
| 26 | chartList.append(createGalleryItem(key, exConfig[key])); |
| 27 | } |
| 28 | } |
| 29 | resizeCharts(); |
| 30 | initSelect(); |
| 31 | sidebarScrollFix(); |
| 32 | } |
| 33 | |
| 34 | |
| 35 | //初始化页面第一次加载 |
no test coverage detected