removed sidemenu controller

This commit is contained in:
Torkel Ödegaard 2015-01-15 17:41:28 +01:00
parent 5b93e09714
commit f3bb2d41a7

View File

@ -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() {
};
});
});