Remove unused controller.

This commit is contained in:
Alexis Lahouze 2017-06-10 22:54:13 +02:00
parent f4d0988fdd
commit cecfa6db4f
2 changed files with 1 additions and 4 deletions

View File

@ -40,7 +40,7 @@
</div>
</nav>
<div class="container-fluid" ng-controller="MainController">
<div class="container-fluid">
<div ng-view></div>
</div>

View File

@ -66,9 +66,6 @@ var app = angular.module('accountant', [
.run(function(editableOptions) {
editableOptions.theme = 'bs3'; // bootstrap3 theme. Can be also 'bs2', 'default'
})
.controller('MainController', function() {
});
module.exports = app;