1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-08-05 22:05:23 +02:00

* chore(eslint): update esllint and remove unused variables

* chore(eslint-config): change no-unused-vars to warn

* chore(eslint): remove unused variables

* chore(eslint): allow unused globals

* fixup! chore(eslint): allow unused globals

* chore(eslint): remove commented unused vars

* fixup! chore(eslint): remove commented unused vars
This commit is contained in:
Chaim Lev-Ari 2018-08-22 18:33:06 +03:00 committed by Anthony Lapenna
parent 46da95ecfb
commit e58acd7dd6
67 changed files with 121 additions and 146 deletions

View file

@ -178,7 +178,7 @@ angular.module('extension.storidge')
return label + ': ' + processedValue + '/s';
}
function bytePerSecBasedAxisLabel(value, index, values) {
function bytePerSecBasedAxisLabel(value) {
if (value > 5) {
return filesize(value, {base: 10, round: 1});
}

View file

@ -1,6 +1,6 @@
angular.module('extension.storidge')
.controller('StoridgeMonitorController', ['$q', '$scope', '$interval', '$document', 'Notifications', 'StoridgeClusterService', 'StoridgeChartService', 'ModalService',
function ($q, $scope, $interval, $document, Notifications, StoridgeClusterService, StoridgeChartService, ModalService) {
.controller('StoridgeMonitorController', ['$q', '$scope', '$interval', '$document', 'Notifications', 'StoridgeClusterService', 'StoridgeChartService',
function ($q, $scope, $interval, $document, Notifications, StoridgeClusterService, StoridgeChartService) {
$scope.$on('$destroy', function() {
stopRepeater();

View file

@ -30,7 +30,7 @@ function ($scope, $state, $transition$, Notifications, StoridgeProfileService) {
$scope.state.actionInProgress = true;
StoridgeProfileService.create(profile)
.then(function success(data) {
.then(function success() {
Notifications.success('Profile successfully created');
$state.go('storidge.profiles');
})

View file

@ -31,7 +31,7 @@ function ($scope, $state, $transition$, Notifications, StoridgeProfileService, M
$scope.state.updateInProgress = true;
StoridgeProfileService.update(profile)
.then(function success(data) {
.then(function success() {
Notifications.success('Profile successfully updated');
$state.go('storidge.profiles');
})
@ -58,7 +58,7 @@ function ($scope, $state, $transition$, Notifications, StoridgeProfileService, M
$scope.state.deleteInProgress = true;
StoridgeProfileService.delete(profile.Name)
.then(function success(data) {
.then(function success() {
Notifications.success('Profile successfully deleted');
$state.go('storidge.profiles');
})

View file

@ -38,7 +38,7 @@ function ($q, $scope, $state, Notifications, StoridgeProfileService) {
$scope.state.actionInProgress = true;
StoridgeProfileService.create(model)
.then(function success(data) {
.then(function success() {
Notifications.success('Profile successfully created');
$state.reload();
})