From 1e01c2669f6622b438d0b11dc673e36915ed4af3 Mon Sep 17 00:00:00 2001 From: Shannon Date: Wed, 26 Mar 2014 11:23:48 +1100 Subject: [PATCH] fixes missing semi-colon --- .../src/common/directives/utill/selectOnFocus.directive.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Umbraco.Web.UI.Client/src/common/directives/utill/selectOnFocus.directive.js b/src/Umbraco.Web.UI.Client/src/common/directives/utill/selectOnFocus.directive.js index 57e44391d5..861bacad47 100644 --- a/src/Umbraco.Web.UI.Client/src/common/directives/utill/selectOnFocus.directive.js +++ b/src/Umbraco.Web.UI.Client/src/common/directives/utill/selectOnFocus.directive.js @@ -8,7 +8,7 @@ angular.module("umbraco.directives") //Initial click, select entire text this.select(); //Set the edit mode so subsequent clicks work normally - $(el).data("editmode", true) + $(el).data("editmode", true); } }). bind("blur", function () {