| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- define([
- 'angular',
- 'config',
- ],
- function (angular, config) {
- 'use strict';
- var module = angular.module('grafana.controllers');
- module.controller('SideMenuCtrl', function($scope) {
- $scope.menu = [
- {
- href: config.appSubUrl,
- text: 'Dashboards',
- icon: 'fa fa-th-large'
- },
- {
- href: 'panels',
- text: 'Panels',
- icon: 'fa fa-signal',
- },
- {
- href: 'alerts',
- text: 'Alerts',
- icon: 'fa fa-bolt',
- },
- {
- href: 'account',
- text: 'Account',
- icon: 'fa fa-user',
- },
- ];
- $scope.init = function() {
- };
- });
- });
|