From 59e8d9b4cf6a941550b04aa5cbac1391f4065b0c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4rtl?= Date: Tue, 9 Oct 2018 18:52:52 +0200 Subject: [PATCH] Add annotation for global variables MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Julius Härtl --- js/controller/BoardController.js | 2 +- js/controller/CardController.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/js/controller/BoardController.js b/js/controller/BoardController.js index 4d54b088c..b131c66bc 100644 --- a/js/controller/BoardController.js +++ b/js/controller/BoardController.js @@ -21,7 +21,7 @@ */ import app from '../app/App.js'; -/* global oc_defaults OC */ +/* global oc_defaults OC OCP OCA */ app.controller('BoardController', function ($rootScope, $scope, $stateParams, StatusService, BoardService, StackService, CardService, LabelService, $state, $transitions, $filter, FileService) { $scope.sidebar = $rootScope.sidebar; diff --git a/js/controller/CardController.js b/js/controller/CardController.js index c3de3a4fa..9c2fd2fce 100644 --- a/js/controller/CardController.js +++ b/js/controller/CardController.js @@ -20,7 +20,7 @@ * */ -/* global app moment angular OC */ +/* global app moment angular OC OCP OCA */ import app from '../app/App.js'; app.controller('CardController', function ($scope, $rootScope, $sce, $location, $stateParams, $state, $interval, $timeout, $filter, BoardService, CardService, StackService, StatusService, markdownItConverter, FileService) {