From dc201c3a7a69e262f76c970f5aeb78e771c3c62a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Tue, 30 Jul 2013 14:19:21 +0200 Subject: [PATCH] Fixed spacing --- js/cross_framing_protection.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/js/cross_framing_protection.js b/js/cross_framing_protection.js index 1e1caf0fd4..5952ab7130 100644 --- a/js/cross_framing_protection.js +++ b/js/cross_framing_protection.js @@ -2,8 +2,8 @@ /** * Conditionally included if framing is not allowed */ -if(self == top) { - document.documentElement.style.display = 'block' ; +if (self == top) { + document.documentElement.style.display = 'block'; } else { - top.location = self.location ; + top.location = self.location; }