From 77247d09bcf7d45ec7d7b63f19f09e8c2e050abd Mon Sep 17 00:00:00 2001 From: Mads Rasmussen Date: Thu, 27 Aug 2015 14:57:42 +0200 Subject: [PATCH] fix js error in umbblockedfield --- .../common/directives/components/umblockedfield.directive.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Umbraco.Web.UI.Client/src/common/directives/components/umblockedfield.directive.js b/src/Umbraco.Web.UI.Client/src/common/directives/components/umblockedfield.directive.js index cc42ffb5fd..9c5f5c09f8 100644 --- a/src/Umbraco.Web.UI.Client/src/common/directives/components/umblockedfield.directive.js +++ b/src/Umbraco.Web.UI.Client/src/common/directives/components/umblockedfield.directive.js @@ -37,7 +37,7 @@ // timeout to make sure dom has updated from a disabled field $timeout(function() { - var input = element.children('.umb-locked-field__input'); + var input = el.children('.umb-locked-field__input'); input.focus(); });