From f3669c2a697ffa8a755cb449c1bd293c48b37f59 Mon Sep 17 00:00:00 2001 From: Andrew Nicols Date: Tue, 6 Oct 2015 13:16:42 +0800 Subject: [PATCH] MDL-51461 javascript: Fix whitespace issue --- lib/amd/src/localstorage.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/amd/src/localstorage.js b/lib/amd/src/localstorage.js index 48cda61b567..3ca51ecffd4 100644 --- a/lib/amd/src/localstorage.js +++ b/lib/amd/src/localstorage.js @@ -55,8 +55,8 @@ define(['core/config'], function(config) { if (localStorage === null) { return false; } - // MDL-51461 - Some browsers misreport availability of local storage - // so check it is actually usable. + // MDL-51461 - Some browsers misreport availability of local storage + // so check it is actually usable. localStorage.setItem(testKey, '1'); localStorage.removeItem(testKey); return true;