From b51b81a31111d8ed42e4f8219cc26e1713201079 Mon Sep 17 00:00:00 2001 From: Julien Melissas Date: Thu, 15 Jun 2017 14:28:19 +0200 Subject: [PATCH] Consistent formatting for skip-link-focus-fix.js Just noticed the spacing on the other files and not this one... See https://github.com/Automattic/_s/blob/master/js/customizer.js#L9 and https://github.com/Automattic/_s/blob/master/js/customizer.js#L42 --- js/skip-link-focus-fix.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/skip-link-focus-fix.js b/js/skip-link-focus-fix.js index a40ebacf..0037752e 100644 --- a/js/skip-link-focus-fix.js +++ b/js/skip-link-focus-fix.js @@ -5,7 +5,7 @@ * * Learn more: https://git.io/vWdr2 */ -(function() { +( function() { var isIe = /(trident|msie)/i.test( navigator.userAgent ); if ( isIe && document.getElementById && window.addEventListener ) { @@ -28,4 +28,4 @@ } }, false ); } -})(); +} )();