Indent and cleanup.

This commit is contained in:
Alexis Lahouze 2017-07-29 17:21:45 +02:00
parent 02f447d63c
commit 20437ba548

View File

@ -1,24 +1,5 @@
// vim: set tw=80 ts=4 sw=4 sts=4:
/*
This file is part of Accountant.
// vim: set tw=80 ts=2 sw=2 sts=2 :
Accountant is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Accountant is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with Accountant. If not, see <http://www.gnu.org/licenses/>.
*/
/* jshint node: true */
'use strict';
import * as moment from 'moment';
import * as c3 from 'c3';
import {
@ -27,6 +8,8 @@ import {
OnInit, OnChanges
} from '@angular/core';
import { Logger } from '@nsalaun/ng-logger';
import { Account } from '../accounts/account';
import { CategoryService } from './category.service';
@ -44,6 +27,7 @@ export class CategoryChartComponent implements OnInit, OnChanges {
constructor(
private elementRef: ElementRef,
private categoryService: CategoryService,
private logger: Logger,
) {}
loadData(account: Account) {
@ -61,7 +45,6 @@ export class CategoryChartComponent implements OnInit, OnChanges {
expensesColor = 'orange';
for(let result of results) {
if(result.revenues > 0) {
var revenuesName = 'revenues-' + result.category;