diff --git a/src/views/account.js b/src/views/account.js index f51d57c9e..431801074 100644 --- a/src/views/account.js +++ b/src/views/account.js @@ -1,6 +1,8 @@ 'use strict'; /* global asyncForEach:false */ +/* global angular:false */ +/* global $:false */ angular.module('Application').controller('AccountController', ['$scope', 'Client', function ($scope, Client) { $scope.user = Client.getUserInfo(); @@ -311,7 +313,7 @@ angular.module('Application').controller('AccountController', ['$scope', 'Client $scope.tokenAddForm.$setPristine(); }, - show: function (client) { + show: function () { $scope.tokenAdd.reset(); $('#tokenAddModal').modal('show'); },