From a2cc0ec411390a2bd842a73a4d9ff9e079d2ac14 Mon Sep 17 00:00:00 2001 From: Jan Skovgaard Date: Wed, 22 Aug 2018 11:30:07 +0200 Subject: [PATCH] Shorten comments --- .../components/content/umbcontentnodeinfo.directive.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Umbraco.Web.UI.Client/src/common/directives/components/content/umbcontentnodeinfo.directive.js b/src/Umbraco.Web.UI.Client/src/common/directives/components/content/umbcontentnodeinfo.directive.js index 0043a2c77e..a141a7a270 100644 --- a/src/Umbraco.Web.UI.Client/src/common/directives/components/content/umbcontentnodeinfo.directive.js +++ b/src/Umbraco.Web.UI.Client/src/common/directives/components/content/umbcontentnodeinfo.directive.js @@ -13,10 +13,10 @@ function onInit() { - // By default we don't show the open anchors + // By default don't show the open anchors scope.allowOpen = false; - // // If we're logged in as an admin user we show the open anchors + // If logged in as an admin user show the open anchors userService.getCurrentUser().then(function (currentUser) { if(currentUser.userType === "admin"){ scope.allowOpen = true;