From fe3c1bc0891f8de95047e7bc06d5ab785e1475ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Lyngs=C3=B8?= Date: Thu, 2 May 2019 13:25:19 +0200 Subject: [PATCH] remove console.log --- src/Umbraco.Web.UI.Client/src/controllers/main.controller.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/Umbraco.Web.UI.Client/src/controllers/main.controller.js b/src/Umbraco.Web.UI.Client/src/controllers/main.controller.js index 841e22f855..48f773f2a1 100644 --- a/src/Umbraco.Web.UI.Client/src/controllers/main.controller.js +++ b/src/Umbraco.Web.UI.Client/src/controllers/main.controller.js @@ -24,7 +24,6 @@ function MainController($scope, $location, appState, treeService, notificationsS // For more information about this approach, see https://hackernoon.com/removing-that-ugly-focus-ring-and-keeping-it-too-6c8727fefcd2 function handleFirstTab(evt) { if (evt.keyCode === 9) { - console.log("handleFirstTab") $scope.tabbingActive = true; $scope.$digest(); window.removeEventListener('keydown', handleFirstTab); @@ -35,7 +34,6 @@ function MainController($scope, $location, appState, treeService, notificationsS function disableTabbingActive(evt) { $scope.tabbingActive = false; $scope.$digest(); - console.log("disableTabbingActive") window.removeEventListener('mousedown', disableTabbingActive); window.addEventListener("keydown", handleFirstTab); }