gitextract_8_fkymag/ ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE.txt ├── README.md ├── bower.json ├── docs/ │ ├── config.json │ ├── contents/ │ │ ├── articles/ │ │ │ ├── 001-getting-started/ │ │ │ │ └── index.md │ │ │ ├── 002-installation-guidelines/ │ │ │ │ └── index.md │ │ │ ├── 011-changing-color-scheme/ │ │ │ │ └── index.md │ │ │ ├── 012-project-structure/ │ │ │ │ └── index.md │ │ │ ├── 013-create-new-page/ │ │ │ │ └── index.md │ │ │ ├── 014-switch-to-blur-theme/ │ │ │ │ └── index.md │ │ │ ├── 051-sidebar/ │ │ │ │ └── index.md │ │ │ └── 091-downloads/ │ │ │ └── index.md │ │ ├── css/ │ │ │ └── main.css │ │ └── index.json │ ├── package.json │ ├── plugins/ │ │ └── paginator.coffee │ └── templates/ │ ├── article.jade │ ├── index.jade │ └── layout.jade ├── gulp/ │ ├── build.js │ ├── conf.js │ ├── devRelease.js │ ├── docs.js │ ├── images.js │ ├── inject.js │ ├── marketplace.js │ ├── scripts.js │ ├── server.js │ ├── styles.js │ └── watch.js ├── gulpfile.js ├── package.json ├── preview.html └── src/ ├── 404.html ├── app/ │ ├── app.js │ ├── pages/ │ │ ├── charts/ │ │ │ ├── amCharts/ │ │ │ │ ├── amCharts.module.js │ │ │ │ ├── areaChart/ │ │ │ │ │ ├── AreaChartCtrl.js │ │ │ │ │ └── areaChart.html │ │ │ │ ├── barChart/ │ │ │ │ │ ├── BarChartCtrl.js │ │ │ │ │ └── barChart.html │ │ │ │ ├── charts.html │ │ │ │ ├── combinedChart/ │ │ │ │ │ ├── combinedChart.html │ │ │ │ │ └── combinedChartCtrl.js │ │ │ │ ├── funnelChart/ │ │ │ │ │ ├── FunnelChartCtrl.js │ │ │ │ │ └── funnelChart.html │ │ │ │ ├── ganttChart/ │ │ │ │ │ ├── ganttChart.html │ │ │ │ │ └── ganttChartCtrl.js │ │ │ │ ├── lineChart/ │ │ │ │ │ ├── LineChartCtrl.js │ │ │ │ │ └── lineChart.html │ │ │ │ └── pieChart/ │ │ │ │ ├── PieChartCtrl.js │ │ │ │ └── pieChart.html │ │ │ ├── chartJs/ │ │ │ │ ├── chartJs.html │ │ │ │ ├── chartJs.module.js │ │ │ │ ├── chartJs1DCtrl.js │ │ │ │ ├── chartJs2DCtrl.js │ │ │ │ └── chartJsWaveCtrl.js │ │ │ ├── chartist/ │ │ │ │ ├── chartist.html │ │ │ │ ├── chartist.module.js │ │ │ │ └── chartistCtrl.js │ │ │ ├── charts.module.js │ │ │ └── morris/ │ │ │ ├── morris.html │ │ │ ├── morris.module.js │ │ │ └── morrisCtrl.js │ │ ├── components/ │ │ │ ├── components.module.js │ │ │ ├── mail/ │ │ │ │ ├── MailTabCtrl.js │ │ │ │ ├── composeBox/ │ │ │ │ │ ├── compose.html │ │ │ │ │ ├── composeBoxCtrl.js │ │ │ │ │ └── composeModal.js │ │ │ │ ├── detail/ │ │ │ │ │ ├── MailDetailCtrl.js │ │ │ │ │ └── mailDetail.html │ │ │ │ ├── list/ │ │ │ │ │ ├── MailListCtrl.js │ │ │ │ │ └── mailList.html │ │ │ │ ├── mail.html │ │ │ │ ├── mail.module.js │ │ │ │ └── mailMessages.js │ │ │ ├── timeline/ │ │ │ │ ├── TimelineCtrl.js │ │ │ │ ├── timeline.html │ │ │ │ └── timeline.module.js │ │ │ └── tree/ │ │ │ ├── tree.html │ │ │ ├── tree.module.js │ │ │ └── treeCtrl.js │ │ ├── dashboard/ │ │ │ ├── blurFeed/ │ │ │ │ ├── BlurFeedCtrl.js │ │ │ │ ├── blurFeed.directive.js │ │ │ │ └── blurFeed.html │ │ │ ├── calendar/ │ │ │ │ └── dashboardCalendar.js │ │ │ ├── dashboard.html │ │ │ ├── dashboard.module.js │ │ │ ├── dashboardCalendar/ │ │ │ │ ├── DashboardCalendarCtrl.js │ │ │ │ ├── dashboardCalendar.directive.js │ │ │ │ └── dashboardCalendar.html │ │ │ ├── dashboardLineChart/ │ │ │ │ ├── DashboardLineChartCtrl.js │ │ │ │ ├── dashboardLineChart.directive.js │ │ │ │ └── dashboardLineChart.html │ │ │ ├── dashboardMap/ │ │ │ │ ├── DashboardMapCtrl.js │ │ │ │ ├── dashboardMap.directive.js │ │ │ │ └── dashboardMap.html │ │ │ ├── dashboardPieChart/ │ │ │ │ ├── DashboardPieChartCtrl.js │ │ │ │ ├── dashboardPieChart.directive.js │ │ │ │ └── dashboardPieChart.html │ │ │ ├── dashboardTodo/ │ │ │ │ ├── DashboardTodoCtrl.js │ │ │ │ ├── dashboardTodo.directive.js │ │ │ │ └── dashboardTodo.html │ │ │ ├── pieCharts/ │ │ │ │ └── dashboardPieChart.js │ │ │ ├── popularApp/ │ │ │ │ ├── popularApp.directive.js │ │ │ │ └── popularApp.html │ │ │ ├── trafficChart/ │ │ │ │ ├── TrafficChartCtrl.js │ │ │ │ ├── trafficChart.directive.js │ │ │ │ └── trafficChart.html │ │ │ └── weather/ │ │ │ ├── WeatherCtrl.js │ │ │ ├── weather.directive.js │ │ │ └── weather.html │ │ ├── form/ │ │ │ ├── form.module.js │ │ │ ├── inputs/ │ │ │ │ ├── inputs.html │ │ │ │ └── widgets/ │ │ │ │ ├── checkboxesRadios.html │ │ │ │ ├── datePickers/ │ │ │ │ │ ├── datePickers.html │ │ │ │ │ ├── datepickerCtrl.js │ │ │ │ │ └── datepickerpopupCtrl.js │ │ │ │ ├── inputGroups.html │ │ │ │ ├── oldSelect/ │ │ │ │ │ ├── OldSelectpickerPanelCtrl.js │ │ │ │ │ ├── select.html │ │ │ │ │ └── selectpicker.directive.js │ │ │ │ ├── oldSwitches/ │ │ │ │ │ ├── OldSwitchPanelCtrl.js │ │ │ │ │ ├── switch.directive.js │ │ │ │ │ └── switch.html │ │ │ │ ├── select/ │ │ │ │ │ ├── GroupSelectpickerOptions.js │ │ │ │ │ ├── SelectpickerPanelCtrl.js │ │ │ │ │ └── select.html │ │ │ │ ├── standardFields.html │ │ │ │ ├── switches/ │ │ │ │ │ ├── SwitchDemoPanelCtrl.js │ │ │ │ │ └── switch.html │ │ │ │ ├── tagsInput/ │ │ │ │ │ ├── tagsInput.directive.js │ │ │ │ │ └── tagsInput.html │ │ │ │ └── validationStates.html │ │ │ ├── layouts/ │ │ │ │ ├── layouts.html │ │ │ │ └── widgets/ │ │ │ │ ├── basicForm.html │ │ │ │ ├── blockForm.html │ │ │ │ ├── formWithoutLabels.html │ │ │ │ ├── horizontalForm.html │ │ │ │ └── inlineForm.html │ │ │ └── wizard/ │ │ │ ├── wizard.html │ │ │ └── wizrdCtrl.js │ │ ├── maps/ │ │ │ ├── google-maps/ │ │ │ │ ├── GmapPageCtrl.js │ │ │ │ └── google-maps.html │ │ │ ├── leaflet/ │ │ │ │ ├── LeafletPageCtrl.js │ │ │ │ └── leaflet.html │ │ │ ├── map-bubbles/ │ │ │ │ ├── MapBubblePageCtrl.js │ │ │ │ └── map-bubbles.html │ │ │ ├── map-lines/ │ │ │ │ ├── MapLinesPageCtrl.js │ │ │ │ └── map-lines.html │ │ │ ├── maps.html │ │ │ └── maps.module.js │ │ ├── pages.module.js │ │ ├── profile/ │ │ │ ├── ProfileModalCtrl.js │ │ │ ├── ProfilePageCtrl.js │ │ │ ├── profile.html │ │ │ ├── profile.module.js │ │ │ └── profileModal.html │ │ ├── tables/ │ │ │ ├── TablesPageCtrl.js │ │ │ ├── basic/ │ │ │ │ └── tables.html │ │ │ ├── smart/ │ │ │ │ └── tables.html │ │ │ ├── tables.module.js │ │ │ └── widgets/ │ │ │ ├── basicTable.html │ │ │ ├── borderedTable.html │ │ │ ├── condensedTable.html │ │ │ ├── contextualTable.html │ │ │ ├── editableRowTable.html │ │ │ ├── editableTable.html │ │ │ ├── hoverRows.html │ │ │ ├── responsiveTable.html │ │ │ ├── smartTable.html │ │ │ └── stripedRows.html │ │ └── ui/ │ │ ├── alerts/ │ │ │ ├── alerts.html │ │ │ └── alerts.module.js │ │ ├── buttons/ │ │ │ ├── ButtonPageCtrl.js │ │ │ ├── buttons.html │ │ │ ├── buttons.module.js │ │ │ └── widgets/ │ │ │ ├── buttonGroups.html │ │ │ ├── buttons.html │ │ │ ├── dropdowns.html │ │ │ ├── iconButtons.html │ │ │ ├── largeButtons.html │ │ │ └── progressButtons.html │ │ ├── grid/ │ │ │ ├── baseGrid.html │ │ │ ├── grid.html │ │ │ └── grid.module.js │ │ ├── icons/ │ │ │ ├── IconsPageCtrl.js │ │ │ ├── icons.html │ │ │ ├── icons.module.js │ │ │ └── widgets/ │ │ │ ├── fontAwesomeIcons.html │ │ │ ├── ionicons.html │ │ │ ├── kameleon.html │ │ │ ├── kameleonRounded.html │ │ │ └── socicon.html │ │ ├── modals/ │ │ │ ├── ModalsPageCtrl.js │ │ │ ├── modalTemplates/ │ │ │ │ ├── basicModal.html │ │ │ │ ├── dangerModal.html │ │ │ │ ├── infoModal.html │ │ │ │ ├── largeModal.html │ │ │ │ ├── smallModal.html │ │ │ │ ├── successModal.html │ │ │ │ └── warningModal.html │ │ │ ├── modals.html │ │ │ ├── modals.module.js │ │ │ ├── notifications/ │ │ │ │ ├── NotificationsCtrl.js │ │ │ │ └── notifications.html │ │ │ └── progressModal/ │ │ │ ├── ProgressModalCtrl.js │ │ │ └── progressModal.html │ │ ├── notifications/ │ │ │ ├── NotificationsPageCtrl.js │ │ │ ├── notifications.html │ │ │ └── notifications.module.js │ │ ├── panels/ │ │ │ ├── panels.html │ │ │ └── panels.module.js │ │ ├── progressBars/ │ │ │ ├── progressBars.html │ │ │ ├── progressBars.module.js │ │ │ └── widgets/ │ │ │ ├── animated.html │ │ │ ├── basic.html │ │ │ ├── label.html │ │ │ ├── stacked.html │ │ │ └── striped.html │ │ ├── slider/ │ │ │ ├── slider.html │ │ │ └── slider.module.js │ │ ├── tabs/ │ │ │ ├── contextualAccordion.html │ │ │ ├── mainTabs.html │ │ │ ├── sampleAccordion.html │ │ │ ├── sideTabs.html │ │ │ ├── tabs.html │ │ │ └── tabs.module.js │ │ ├── typography/ │ │ │ ├── typography.html │ │ │ └── typography.module.js │ │ └── ui.module.js │ └── theme/ │ ├── components/ │ │ ├── baPanel/ │ │ │ ├── baPanel.directive.js │ │ │ ├── baPanel.service.js │ │ │ ├── baPanelBlur.directive.js │ │ │ ├── baPanelBlurHelper.service.js │ │ │ └── baPanelSelf.directive.js │ │ ├── baSidebar/ │ │ │ ├── BaSidebarCtrl.js │ │ │ ├── ba-sidebar.html │ │ │ ├── baSidebar.directive.js │ │ │ ├── baSidebar.service.js │ │ │ └── baSidebarHelpers.directive.js │ │ ├── baWizard/ │ │ │ ├── baWizard.directive.js │ │ │ ├── baWizard.html │ │ │ ├── baWizardCtrl.js │ │ │ ├── baWizardStep.directive.js │ │ │ └── baWizardStep.html │ │ ├── backTop/ │ │ │ ├── backTop.directive.js │ │ │ └── backTop.html │ │ ├── components.module.js │ │ ├── contentTop/ │ │ │ ├── contentTop.directive.js │ │ │ └── contentTop.html │ │ ├── msgCenter/ │ │ │ ├── MsgCenterCtrl.js │ │ │ ├── msgCenter.directive.js │ │ │ └── msgCenter.html │ │ ├── pageTop/ │ │ │ ├── pageTop.directive.js │ │ │ └── pageTop.html │ │ ├── progressBarRound/ │ │ │ ├── progressBarRound.directive.js │ │ │ └── progressBarRound.html │ │ ├── toastrLibConfig.js │ │ └── widgets/ │ │ ├── widgets.directive.js │ │ └── widgets.html │ ├── directives/ │ │ ├── animatedChange.js │ │ ├── autoExpand.js │ │ ├── autoFocus.js │ │ ├── includeWithScope.js │ │ ├── ionSlider.js │ │ ├── ngFileSelect.js │ │ ├── scrollPosition.js │ │ ├── trackWidth.js │ │ └── zoomIn.js │ ├── filters/ │ │ ├── image/ │ │ │ ├── appImage.js │ │ │ ├── kameleonImg.js │ │ │ └── profilePicture.js │ │ └── text/ │ │ └── removeHtml.js │ ├── inputs/ │ │ ├── baSwitcher/ │ │ │ ├── baSwitcher.html │ │ │ └── baSwitcher.js │ │ └── inputs.module.js │ ├── services/ │ │ ├── baProgressModal.js │ │ ├── baUtil.js │ │ ├── fileReader.js │ │ ├── preloader.js │ │ └── stopableInterval.js │ ├── theme.config.js │ ├── theme.configProvider.js │ ├── theme.constants.js │ ├── theme.module.js │ ├── theme.run.js │ └── theme.service.js ├── auth.html ├── index.html ├── reg.html └── sass/ ├── 404.scss ├── README.md ├── app/ │ ├── _alerts.scss │ ├── _buttonsPage.scss │ ├── _chartsPage.scss │ ├── _dashboard.scss │ ├── _email.scss │ ├── _form.scss │ ├── _grid.scss │ ├── _iconsPage.scss │ ├── _modalNotifications.scss │ ├── _modals.scss │ ├── _notifications.scss │ ├── _profile.scss │ ├── _slider.scss │ ├── _table.scss │ ├── _tabsPage.scss │ ├── _tplSkinPanel.scss │ ├── _tree.scss │ ├── _typography.scss │ └── maps/ │ ├── _google-maps.scss │ ├── _leaflet.scss │ ├── _map-bubbles.scss │ └── _map-lines.scss ├── auth.scss ├── common.scss ├── main.scss └── theme/ ├── _blur-admin-theme.scss ├── _buttons.scss ├── _datePicker.scss ├── _icons.scss ├── _layout.scss ├── _preloader.scss ├── _socicon.scss ├── _table.scss ├── _tree.scss ├── bootstrap-overrides/ │ ├── _panel.scss │ └── _tabs.scss ├── components/ │ ├── _accordion.scss │ ├── _baWizard.scss │ ├── _backTop.scss │ ├── _contentTop.scss │ ├── _msgCenter.scss │ ├── _pageTop.scss │ ├── _progressRound.scss │ ├── _sidebar.scss │ └── _widgets.scss ├── conf/ │ ├── _mixins.scss │ ├── _variables.scss │ └── colorScheme/ │ ├── _blur.scss │ └── _mint.scss └── dashboard/ ├── _amChart.scss ├── _amChartMap.scss ├── _blurFeed.scss ├── _calendar.scss ├── _pieCharts.scss ├── _popularApp.scss ├── _timeline.scss ├── _todo.scss ├── _trafficChart.scss └── _weather.scss