@@ -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 @@