From f33c43609f9afa29a44cbb8a56ba717aa52d06d6 Mon Sep 17 00:00:00 2001
From: Jan Skovgaard <1932158+BatJan@users.noreply.github.com>
Date: Mon, 31 Aug 2020 20:30:47 +0200
Subject: [PATCH] General markup cleanup on buttons and icons (#8746)
---
.../components/umbdropdown.directive.js | 4 ++--
.../util/umbkeyboardlist.directive.js | 20 +++++++++----------
.../notifications/umb-notifications.html | 2 +-
.../views/components/umb-groups-builder.html | 4 ++--
.../src/views/datatypes/create.html | 12 +++++------
.../src/views/documenttypes/create.html | 16 +++++++--------
.../src/views/mediatypes/create.html | 10 +++++-----
.../src/views/membertypes/create.html | 6 +++---
.../views/packages/views/install-local.html | 2 +-
.../src/views/partialviewmacros/create.html | 20 +++++++++----------
.../src/views/scripts/create.html | 10 +++++-----
.../src/views/stylesheets/create.html | 14 ++++++-------
12 files changed, 60 insertions(+), 60 deletions(-)
diff --git a/src/Umbraco.Web.UI.Client/src/common/directives/components/umbdropdown.directive.js b/src/Umbraco.Web.UI.Client/src/common/directives/components/umbdropdown.directive.js
index d6006114a6..cfba5be2ce 100644
--- a/src/Umbraco.Web.UI.Client/src/common/directives/components/umbdropdown.directive.js
+++ b/src/Umbraco.Web.UI.Client/src/common/directives/components/umbdropdown.directive.js
@@ -22,7 +22,7 @@
@@ -33,11 +33,11 @@ angular.module('umbraco.directives')
return {
restrict: 'A',
link: function (scope, element, attr) {
-
+
var listItems = [];
var currentIndex = 0;
var focusSet = false;
-
+
$timeout(function(){
// get list of all links in the list
listItems = element.find("li :tabbable");
@@ -82,7 +82,7 @@ angular.module('umbraco.directives')
function arrowDown() {
if (currentIndex < listItems.length - 1) {
- // only bump the current index if the focus is already
+ // only bump the current index if the focus is already
// set else we just want to focus the first element
if (focusSet) {
currentIndex++;
@@ -112,4 +112,4 @@ angular.module('umbraco.directives')
}
};
- }]);
\ No newline at end of file
+ }]);
diff --git a/src/Umbraco.Web.UI.Client/src/views/components/notifications/umb-notifications.html b/src/Umbraco.Web.UI.Client/src/views/components/notifications/umb-notifications.html
index 349384f713..37cd736830 100644
--- a/src/Umbraco.Web.UI.Client/src/views/components/notifications/umb-notifications.html
+++ b/src/Umbraco.Web.UI.Client/src/views/components/notifications/umb-notifications.html
@@ -20,7 +20,7 @@
diff --git a/src/Umbraco.Web.UI.Client/src/views/components/umb-groups-builder.html b/src/Umbraco.Web.UI.Client/src/views/components/umb-groups-builder.html
index 0067fa1327..d722fba7be 100644
--- a/src/Umbraco.Web.UI.Client/src/views/components/umb-groups-builder.html
+++ b/src/Umbraco.Web.UI.Client/src/views/components/umb-groups-builder.html
@@ -44,7 +44,7 @@