Skip to content
This repository was archived by the owner on May 1, 2023. It is now read-only.

Commit

Permalink
chore(lint): fix linter errors due to eslint 3.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
albertosantini committed Oct 28, 2016
1 parent 44caa9f commit 34156b9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/client/app/charts/order-dialog.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
.controller("OrderDialog", OrderDialog);

OrderDialog.$inject = ["$mdDialog", "toastService", "params",
"quotesService", "ordersService", "accountsService"];
"quotesService", "ordersService", "accountsService"];
/*eslint-disable max-len */
function OrderDialog($mdDialog, toastService, params, quotesService, ordersService, accountsService) {
/*eslint-enable */
Expand Down
4 changes: 2 additions & 2 deletions src/client/app/header/header.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
});

Header.$inject = ["$window", "$rootScope", "$mdDialog", "$mdBottomSheet",
"toastService", "accountsService", "sessionService",
"quotesService", "streamService"];
"toastService", "accountsService", "sessionService",
"quotesService", "streamService"];
/*eslint-disable max-len */
function Header($window, $rootScope, $mdDialog, $mdBottomSheet, toastService, accountsService, sessionService, quotesService, streamService) {
/*eslint-enable */
Expand Down
4 changes: 2 additions & 2 deletions src/client/app/services/stream.service.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
.factory("streamService", streamService);

streamService.$inject = ["$timeout", "$http",
"quotesService", "activityService", "tradesService",
"ordersService", "accountsService", "pluginsService"];
"quotesService", "activityService", "tradesService",
"ordersService", "accountsService", "pluginsService"];
function streamService($timeout, $http,
quotesService, activityService, tradesService,
ordersService, accountsService, pluginsService) {
Expand Down

0 comments on commit 34156b9

Please sign in to comment.