Commit f3bb2d41 by Torkel Ödegaard

removed sidemenu controller

parent 5b93e097
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() {
};
});
});
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment