From d5a29f7accd3920b2227032fa99b86bdf4a775e6 Mon Sep 17 00:00:00 2001 From: itelo Date: Fri, 22 Jul 2016 02:05:41 -0300 Subject: [PATCH] fix(core): fix page-title directive (#1405) fix Eslint throws "Move the invocation into the parens that contain the function wrap-iife" fix typo retrict -> restrict --- modules/core/client/directives/page-title.client.directive.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/core/client/directives/page-title.client.directive.js b/modules/core/client/directives/page-title.client.directive.js index bea8817a67..857d0b3603 100644 --- a/modules/core/client/directives/page-title.client.directive.js +++ b/modules/core/client/directives/page-title.client.directive.js @@ -8,7 +8,7 @@ function pageTitle($rootScope, $interpolate, $state) { var directive = { - retrict: 'A', + restrict: 'A', link: link }; @@ -29,4 +29,4 @@ } } } -})(); +}());