mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
removed sidemenu controller
This commit is contained in:
parent
5b93e09714
commit
f3bb2d41a7
@ -1,40 +0,0 @@
|
||||
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() {
|
||||
};
|
||||
|
||||
});
|
||||
|
||||
});
|
Loading…
Reference in New Issue
Block a user